Ticket list updates
This commit is contained in:
parent
6a85c644dc
commit
dce765033d
12 changed files with 397 additions and 133 deletions
19
apps/link/graphql/getTicketOverviewCountsQuery.ts
Normal file
19
apps/link/graphql/getTicketOverviewCountsQuery.ts
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
import { gql } from 'graphql-request';
|
||||
|
||||
export const getTicketOverviewCountsQuery = gql`
|
||||
query ticketOverviewTicketCount {
|
||||
ticketOverviews {
|
||||
edges {
|
||||
node {
|
||||
id
|
||||
name
|
||||
ticketCount
|
||||
}
|
||||
cursor
|
||||
}
|
||||
pageInfo {
|
||||
endCursor
|
||||
hasNextPage
|
||||
}
|
||||
}
|
||||
}`;
|
||||
Loading…
Add table
Add a link
Reference in a new issue