Skip to content

Commit 0331998

Browse files
committed
fix: add back noAi arg for backwards compat
1 parent 26565db commit 0331998

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

src/schema/feedV2.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ export const feedV2TypeDefs = /* GraphQL */ `
100100
"""
101101
supportedTypes: [String!]
102102
103+
"""
104+
Deprecated, no longer in use. Kept for backwards compatibility.
105+
"""
106+
noAi: Boolean = false
107+
103108
"""
104109
Number of highlights to include in a highlights item.
105110
If zero or null, highlights items are not requested.

src/schema/feeds.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,11 @@ export const typeDefs = /* GraphQL */ `
407407
Array of supported post types
408408
"""
409409
supportedTypes: [String!]
410+
411+
"""
412+
Deprecated, no longer in use. Kept for backwards compatibility.
413+
"""
414+
noAi: Boolean = false
410415
): PostConnection! @auth
411416
412417
"""

0 commit comments

Comments
 (0)