UNPKG

@valueflows/vf-graphql

Version:

Reference GraphQL implementation of the ValueFlows spec

30 lines (24 loc) 623 B
// Generated by scripts/build.js - edit the *.gql file instead! module.exports = ` ## # # Query filter parameters for Observation <> Plan relationships # # :TODO: decide on final set, and align with agent.plan.filtering params # @see https://lab.allmende.io/valueflows/vf-schemas/vf-graphql/-/issues/90 # # @package ValueFlows GraphQL # @since 2021-12-13 # ## "Query parameters for reading \`Process\`es related to a \`Plan\`" input PlanProcessFilterParams { searchString: String after: DateTime before: DateTime finished: Boolean } type Plan { processes(filter: PlanProcessFilterParams): [Process!] } `