mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
19 lines
281 B
TypeScript
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
|
|
}
|