@valueflows/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
19 lines (14 loc) • 322 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
input ProcessFilterParams {
searchString: String
finished: Boolean
inScopeOf: [ID!]
classifiedAs: [URI!]
startDate: DateTime
endDate: DateTime
}
type Query {
processes(filter: ProcessFilterParams): ProcessConnection!
}
`