omnivore/packages/web/lib/networking/fragments/labelFragment.ts
2022-03-25 14:17:02 -07:00

19 lines
281 B
TypeScript

import { gql } from 'graphql-request'
export const labelFragment = gql`
fragment LabelFields on Label {
id
name
color
description
createdAt
}
`
export type Label = {
id: string
name: string
color: string
description?: string
createdAt: string
}