diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-03-09 23:23:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-09 23:23:47 +0100 |
| commit | 847b7303278c7894e5d6b055e0e654f6cf809330 (patch) | |
| tree | 1145c488ee0580eeb0709863c98f6ef2f413f478 /src/ts/types/taxonomies.ts | |
| parent | 5b6639a3cf9b6c63045cb82e6ef1a43b0742c367 (diff) | |
refactor: update graphql queries (#14)
* refactor: replace postBy query
postBy is now deprecated in WPGraphQL v1.7
* refactor: update post comments query
PostBy is deprecated and it is now possible to use the post ID to query
comments.
* refactor: update get topic by slug query
topicBy is deprecated
* refactor: update get thematic by slug query
thematicBy is deprecated
Diffstat (limited to 'src/ts/types/taxonomies.ts')
| -rw-r--r-- | src/ts/types/taxonomies.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ts/types/taxonomies.ts b/src/ts/types/taxonomies.ts index 8a0fcc7..17fc022 100644 --- a/src/ts/types/taxonomies.ts +++ b/src/ts/types/taxonomies.ts @@ -61,7 +61,7 @@ export type RawTopic = TopicPreview & { }; export type TopicBy = { - topicBy: RawTopic; + topic: RawTopic; }; export type AllTopicsSlug = { @@ -99,7 +99,7 @@ export type RawThematic = TaxonomyPreview & { }; export type ThematicBy = { - thematicBy: RawThematic; + thematic: RawThematic; }; export type AllThematicsSlug = { |
