diff options
Diffstat (limited to 'src/types')
| -rw-r--r-- | src/types/data.ts | 2 | ||||
| -rw-r--r-- | src/types/gql.ts | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/types/data.ts b/src/types/data.ts index 21f773e..80a8bf3 100644 --- a/src/types/data.ts +++ b/src/types/data.ts @@ -273,6 +273,7 @@ export type ThematicMeta = Omit<PageMeta, 'wordsCount'> & { }; export type Thematic = Page & { + id: number; meta: ThematicMeta; }; @@ -283,5 +284,6 @@ export type TopicMeta = Omit<PageMeta, 'wordsCount'> & { }; export type Topic = Page & { + id: number; meta: TopicMeta; }; diff --git a/src/types/gql.ts b/src/types/gql.ts index cec66c6..ac3ac36 100644 --- a/src/types/gql.ts +++ b/src/types/gql.ts @@ -70,4 +70,5 @@ export type GraphQLTaxonomyOrderBy = { export type GraphQLTaxonomyWhere = { search?: string; title?: string; + notIn?: number[]; }; |
