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: etc/schema.graphqls
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -58,15 +58,15 @@ type Query {
58
58
59
59
lofProductBySellerId(
60
60
seller_id: Int!@doc(description: "Seller id")
61
-
search: String@doc(description: "Performs a full-text search using the specified key words."),
61
+
search: String= ""@doc(description: "Performs a full-text search using the specified key words."),
62
62
filter: ProductAttributeFilterInput@doc(description: "Identifies which product attributes to search for and return."),
63
63
pageSize: Int = 20 @doc(description: "Specifies the maximum number of results to return at once. This attribute is optional."),
64
64
currentPage: Int = 1 @doc(description: "Specifies which page of results to return. The default value is 1."),
65
65
sort: ProductAttributeSortInput@doc(description: "Specifies which attributes to sort on, and whether to return the results in ascending or descending order.")
66
66
): Products@resolver(class: "\\Lof\\MarketplaceGraphQl\\Model\\Resolver\\ProductBySellerId") @doc(description: "Get Product by Seller ID")
67
67
68
68
lofProductList(
69
-
search: String@doc(description: "Performs a full-text search using the specified key words."),
69
+
search: String= ""@doc(description: "Performs a full-text search using the specified key words."),
70
70
filter: ProductAttributeFilterInput@doc(description: "Identifies which product attributes to search for and return."),
71
71
pageSize: Int = 20 @doc(description: "Specifies the maximum number of results to return at once. This attribute is optional."),
72
72
currentPage: Int = 1 @doc(description: "Specifies which page of results to return. The default value is 1."),
0 commit comments