@leosprograms/vf-graphql
Version:
Reference GraphQL implementation of the ValueFlows spec
27 lines (20 loc) • 518 B
JavaScript
// Generated by scripts/build.js - edit the *.gql file instead!
module.exports = `
##
#
# Intent <> Satisfaction API
#
# Extend Intents with Satisfactions
#
# @package vf-graphql
# @since 2022-05-27
#
##
type Intent {
##############################################################################
# inverse relationships and queries
satisfiedBy: [Satisfaction!]
}
# Note the inverse relationship is not also here, it is in satisfaction.gql
# since satisfaction does basically nothing without Intent.
`