aboutsummaryrefslogtreecommitdiffstats
path: root/src/services/graphql/fetchers/topics
diff options
context:
space:
mode:
Diffstat (limited to 'src/services/graphql/fetchers/topics')
-rw-r--r--src/services/graphql/fetchers/topics/fetch-topics-list.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/services/graphql/fetchers/topics/fetch-topics-list.ts b/src/services/graphql/fetchers/topics/fetch-topics-list.ts
index 2ede721..6f2ab8f 100644
--- a/src/services/graphql/fetchers/topics/fetch-topics-list.ts
+++ b/src/services/graphql/fetchers/topics/fetch-topics-list.ts
@@ -12,13 +12,13 @@ export type TopicsListResponse = {
topics: Nullable<GraphQLConnection<WPTopicPreview>>;
};
-const topicsListQuery = `query TopicsList($after: String, $before: String, $first: Int, $last: Int, $orderby: [PostObjectsConnectionOrderbyInput], $search: String, $title: String) {
+const topicsListQuery = `query TopicsList($after: String, $before: String, $first: Int, $last: Int, $orderby: [PostObjectsConnectionOrderbyInput], $search: String, $title: String, $notIn: [ID]) {
topics(
after: $after
before: $before
first: $first
last: $last
- where: {orderby: $orderby, search: $search, title: $title}
+ where: {orderby: $orderby, search: $search, title: $title, notIn: $notIn}
) {
edges {
cursor