Function getGlossaries

  • Returns all glossaries.

    Parameters

    • query: {
          countTotal?: boolean;
          limit?: number;
          next?: string;
          prev?: string;
          sort?:
              | "name"
              | "description"
              | "+description"
              | "-description"
              | "-name"
              | "+name";
      }

      an object with query parameters

      • OptionalcountTotal?: boolean

        Optional parameter to request total count for query

      • Optionallimit?: number

        The number of glossaries to get.

      • Optionalnext?: string

        Optional parameter to request the next page.

      • Optionalprev?: string

        Optional parameter to request the previous page.

      • Optionalsort?: "name" | "description" | "+description" | "-description" | "-name" | "+name"

        Optional resource field name to sort on, eg. name. Can be prefixed with +/- to determine order, defaults to (+) ascending.

    • Optionaloptions: ApiCallOptions

    Returns Promise<GetGlossariesHttpResponse>

    GetGlossariesHttpError