Interface GraphQLNamedSchemaElement

    • Method Detail

      • getName

        @NotNull
        @NotNull java.lang.String getName()
        Returns:
        the name of this element. This cant be null
      • getDescription

        @Nullable
        @Nullable java.lang.String getDescription()
        Returns:
        the description of this element. This can be null
      • getDefinition

        @Nullable
        @Nullable Node getDefinition()
        The AST Node this schema element is based on. Is null if the GraphQLSchema is not based on a SDL document. Some elements also have additional extension Nodes. See for example GraphQLObjectType.getExtensionDefinitions()
        Returns:
        Node which this element is based on. Can be null.