UNPKG

@valueflows/vf-graphql

Version:

Reference GraphQL implementation of the ValueFlows spec

43 lines (34 loc) 783 B
// Generated by scripts/build.js - edit the *.gql file instead! module.exports = ` ## # # Result ordering parameters for the Planning module # # :TODO: decide on final options and logic # # @package ValueFlows GraphQL # @since 2021-12-12 # ## # input CommitmentsOrder { # } input IntentsOrder { name: Sort resourceQuantity: Sort effortQuantity: Sort availableQuantity: Sort startTime: Sort endTime: Sort due: Sort } # input FulfillmentsOrder { # } # input SatisfactionsOrder { # } type Query { # commitments(orderBy: CommitmentsOrder): CommitmentConnection! intents(orderBy: IntentsOrder): IntentConnection! # fulfillments(orderBy: FulfillmentsOrder): FulfillmentConnection! # satisfactions(orderBy: SatisfactionsOrder): SatisfactionConnection! } `