@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
21 lines (16 loc) • 421 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
input ProcessIntentFilterParams {
searchString: String
providerId: [ID!]
receiverId: [ID!]
resourceClassifiedAs: [URI!]
action: [ID!]
startDate: DateTime
endDate: DateTime
}
type Process {
intendedInputs(filter: ProcessIntentFilterParams): [Intent!]
intendedOutputs(filter: ProcessIntentFilterParams): [Intent!]
}
`