31 lines
646 B
JavaScript
31 lines
646 B
JavaScript
export const pageInfoMultiplePages = {
|
|
endCursor: 'eyJpZCI6IjEwNTMifQ',
|
|
hasNextPage: true,
|
|
hasPreviousPage: true,
|
|
startCursor: 'eyJpZCI6IjEwNzIifQ',
|
|
__typename: 'PageInfo',
|
|
};
|
|
|
|
export const pageInfoOnePage = {
|
|
endCursor: 'eyJpZCI6IjEwNTMifQ',
|
|
hasNextPage: false,
|
|
hasPreviousPage: false,
|
|
startCursor: 'eyJpZCI6IjEwNzIifQ',
|
|
__typename: 'PageInfo',
|
|
};
|
|
|
|
export const pageInfoEmpty = {
|
|
endCursor: null,
|
|
hasNextPage: false,
|
|
hasPreviousPage: false,
|
|
startCursor: null,
|
|
__typename: 'PageInfo',
|
|
};
|
|
|
|
export const defaultOrganization = {
|
|
id: 1,
|
|
name: 'Default',
|
|
web_url: '/-/organizations/default',
|
|
avatar_url: null,
|
|
};
|