codegen/testserver/nullabledirectives/directive.graphql (7 lines of code) (raw):
directive @populate(value: String!) on ARGUMENT_DEFINITION
directive @noop on ARGUMENT_DEFINITION
type Query {
directiveSingleNullableArg(
arg1: String @populate(value: "test") @noop,
): String
}