packages feed

morpheus-graphql-core-0.14.0: test/schema/parsing/directive/ok/sophisticated/schema.gql

directive @DirectiveA on SCALAR

directive @DirectiveB(arg: Int) on FIELD_DEFINITION | INPUT_OBJECT

directive @DirectiveC(arg: MyInput! = {}) on FIELD_DEFINITION | FIELD_DEFINITION

directive @DirectiveD(
  arg: String = "bla"
) on FIELD_DEFINITION | FIELD_DEFINITION

input MyInput {
  field: Int
}

type Query {
  name: String
}