mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
21 lines
324 B
TypeScript
21 lines
324 B
TypeScript
import { gql } from 'graphql-request'
|
|
|
|
export const featureFragment = gql`
|
|
fragment FeatureFields on Feature {
|
|
id
|
|
name
|
|
createdAt
|
|
updatedAt
|
|
grantedAt
|
|
expiresAt
|
|
}
|
|
`
|
|
|
|
export interface Feature {
|
|
id: string
|
|
name: string
|
|
createdAt: Date
|
|
updatedAt?: Date
|
|
grantedAt?: Date
|
|
expiresAt?: Date
|
|
}
|