Class LiteralQuery


  • public class LiteralQuery
    extends AbstractQuery<LiteralQuery>
    An RDF literal with a datatype, a string (lexical form) and an optional language tag.
    • Method Detail

      • datatype

        public LiteralQuery datatype()
        The URI of the datatype.
      • lang

        public LiteralQuery lang()
        The language tag such as "en". The empty string for anything but rdf:langString literals.
      • string

        public LiteralQuery string()
        The literal's string (lexical form).
      • createFragment

        public static Fragment<LiteralQuery> createFragment​(String name,
                                                            LiteralQueryDefinition queryDef)
        Creates a GraphQL "named" fragment with the specified query type definition. The generics nature of fragments ensures that a fragment can only be used at the right place in the GraphQL request.
        Parameters:
        name - The name of the fragment, must be unique for a given GraphQL request.
        queryDef - The fragment definition.
        Returns:
        The fragment of a given generics type.
      • addFragmentReference

        public LiteralQuery addFragmentReference​(Fragment<LiteralQuery> fragment)
        Adds a LiteralQuery fragment reference at the current position of the query. For example for a fragment named test, calling this method will add the reference ...test in the query. For GraphQL types implementing an interface, there will be some similar methods using the Query type of each implemented interface.
        Parameters:
        fragment - The fragment to reference.