You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: thoth-api/src/graphql/model.rs
+10-4
Original file line number
Diff line number
Diff line change
@@ -253,13 +253,19 @@ impl QueryRoot {
253
253
description = "Query the full list of imprints",
254
254
arguments(
255
255
limit(default = 100, description = "The number of items to return"),
256
-
offset(default = 0, description = "The number of items to skip")
256
+
offset(default = 0, description = "The number of items to skip"),
257
+
filter(
258
+
default = "".to_string(),
259
+
description = "A query string to search. This argument is a test, do not rely on it. At present it simply searches for case insensitive literals on imprint_name and imprint_url"
0 commit comments