@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
42 lines (32 loc) • 1.07 kB
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# Agent <> Scenario query API
#
# @package vf-graphql
# @since 2022-06-16
#
##
type Scenario {
"Grouping around something to create a boundary or context, used for documenting, accounting, planning."
inScopeOf: [AccountingScope!]
}
input ScenarioCreateParams {
"(\`AccountingScope\`) Grouping around something to create a boundary or context, used for documenting, accounting, planning."
inScopeOf: [ID!]
}
input ScenarioUpdateParams {
"(\`AccountingScope\`) Grouping around something to create a boundary or context, used for documenting, accounting, planning."
inScopeOf: [ID!]
}
interface Agent {
scenariosInScope(first: Int, after: String, last: Int, before: String): ScenarioConnection
}
type Person implements Agent {
scenariosInScope(first: Int, after: String, last: Int, before: String): ScenarioConnection
}
type Organization implements Agent {
scenariosInScope(first: Int, after: String, last: Int, before: String): ScenarioConnection
}
`