All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ava.graphql-java.2019-03-15T05-33-44-d008832.source-code.GraphqlOperation.g4 Maven / Gradle / Ivy

There is a newer version: 230521-nf-execution
Show newest version
grammar GraphqlOperation;
import GraphqlCommon;

operationDefinition:
selectionSet |
operationType  name? variableDefinitions? directives? selectionSet;

variableDefinitions : '(' variableDefinition+ ')';

variableDefinition : variable ':' type defaultValue?;


selectionSet :  '{' selection+ '}';

selection :
field |
fragmentSpread |
inlineFragment;

field : alias? name arguments? directives? selectionSet?;

alias : name ':';




fragmentSpread : '...' fragmentName directives?;

inlineFragment : '...' typeCondition? directives? selectionSet;

fragmentDefinition : 'fragment' fragmentName typeCondition directives? selectionSet;

fragmentName :  name;

typeCondition : 'on' typeName;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy