@leosprograms/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
31 lines (24 loc) • 473 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# Intent <> Proposal indexes
#
# Enables traversing Intent links into related Proposal modules.
#
# @package vf-graphql
# @since 2020-02-12
#
##
type Intent {
publishedIn: [ProposedIntent!]
}
type Proposal {
primaryIntents: [Intent!]
reciprocalIntents: [Intent!]
}
type ProposedIntent {
"The intent which is part of this published proposal."
publishes: Intent!
}
`