Globus SDK for JavaScript
    Preparing search index...
    • post(
          index_id: string,
          options:
              | undefined
              | { payload: GSearchRequest } & {
                  headers?: Headers;
                  query?: {
                      [key: string]:
                          | undefined
                          | null
                          | string
                          | number
                          | boolean
                          | (undefined | null | string | number)[];
                  };
              },
          sdkOptions?: SDKOptions,
      ): Promise<JSONFetchResponse<GSearchResult>>

      Parameters

      • index_id: string

        The UUID of the index to query.

      • options:
            | undefined
            | { payload: GSearchRequest } & {
                headers?: Headers;
                query?: {
                    [key: string]:
                        | undefined
                        | null
                        | string
                        | number
                        | boolean
                        | (undefined | null | string | number)[];
                };
            }
      • OptionalsdkOptions: SDKOptions

      Returns Promise<JSONFetchResponse<GSearchResult>>