@zeepkist/graphql
    Preparing search index...

    Interface UpdateWorldRecordGlobalPayload

    The output of our updateWorldRecordGlobal mutation.

    interface UpdateWorldRecordGlobalPayload {
        clientMutationId: null | string;
        query: null | Query;
        __typename: "UpdateWorldRecordGlobalPayload";
    }
    Index

    Properties

    clientMutationId: null | string

    The exact same clientMutationId that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.

    query: null | Query

    Our root query field type. Allows us to run any query from our mutation payload.

    __typename: "UpdateWorldRecordGlobalPayload"