Type Alias GameEnchantPagination

GameEnchantPagination: {
    __typename?: "GameEnchantPagination";
    current_page: Scalars["Int"];
    data?: Maybe<Maybe<GameEnchant>[]>;
    from?: Maybe<Scalars["Int"]>;
    has_more_pages: Scalars["Boolean"];
    last_page: Scalars["Int"];
    per_page: Scalars["Int"];
    to?: Maybe<Scalars["Int"]>;
    total: Scalars["Int"];
}

Type declaration

  • Optional__typename?: "GameEnchantPagination"
  • current_page: Scalars["Int"]

    Current page of the cursor

  • Optionaldata?: Maybe<Maybe<GameEnchant>[]>

    List of items on the current page

  • Optionalfrom?: Maybe<Scalars["Int"]>

    Number of the first item returned

  • has_more_pages: Scalars["Boolean"]

    Determines if cursor has more pages after the current page

  • last_page: Scalars["Int"]

    The last page (number of pages)

  • per_page: Scalars["Int"]

    Number of items returned per page

  • Optionalto?: Maybe<Scalars["Int"]>

    Number of the last item returned

  • total: Scalars["Int"]

    Number of total items selected by the query