@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
23 lines (18 loc) • 425 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
input CommitmentFilterParams {
searchString: String
providerId: [ID!]
receiverId: [ID!]
resourceClassifiedAs: [URI!]
resourceConformsTo: [ID!]
finished: Boolean
action: [ID!]
startDate: DateTime
endDate: DateTime
inScopeOf: [ID!]
}
type Query {
commitments(filter: CommitmentFilterParams): CommitmentConnection!
}
`