Variable SPARQLConst

SPARQL: {
    ensureFullURI: ((prefixedURIOrFullURI) => string);
    ensurePrefixedURI: ((prefixedURIOrFullURI) => null | string);
    getFullURI: ((prefixedURI) => string);
    getPredicate: ((internalKey) => string);
    getPrefixedURI: ((fullURI) => null | string);
    getSPARQLPrefixes: ((prefixes?) => string);
} = ...

Type declaration

  • ensureFullURI: ((prefixedURIOrFullURI) => string)
      • (prefixedURIOrFullURI): string
      • Ensure the uri is a full URI.

        Parameters

        • prefixedURIOrFullURI: string

          {string}

        Returns string

  • ensurePrefixedURI: ((prefixedURIOrFullURI) => null | string)
      • (prefixedURIOrFullURI): null | string
      • Ensure the uri is a prefixed URI.

        Parameters

        • prefixedURIOrFullURI: string

          {string}

        Returns null | string

  • getFullURI: ((prefixedURI) => string)
      • (prefixedURI): string
      • Get full URI of the prefixed URI.

        Parameters

        • prefixedURI: string

          {string}

        Returns string

  • getPredicate: ((internalKey) => string)
      • (internalKey): string
      • Parameters

        • internalKey: string

        Returns string

  • getPrefixedURI: ((fullURI) => null | string)
      • (fullURI): null | string
      • Get prefixed URI. i.e. cp:Client

        Parameters

        • fullURI: string

          {string}

        Returns null | string

        prefixed URI or null

  • getSPARQLPrefixes: ((prefixes?) => string)
      • (prefixes?): string
      • Parameters

        • Optional prefixes: string[]

          {string[]}

        Returns string

Generated using TypeDoc