@leosprograms/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
25 lines (20 loc) • 363 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: [Proposal!]
}
type Proposal {
primaryIntents: [Intent!]
reciprocalIntents: [Intent!]
}
`