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