saleor-dashboard/src/fragments/pageInfo.ts

11 lines
191 B
TypeScript
Raw Normal View History

import { gql } from "@apollo/client";
export const pageInfoFragment = gql`
fragment PageInfoFragment on PageInfo {
endCursor
hasNextPage
hasPreviousPage
startCursor
}
`;