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: schema-staging.graphql
+119-3Lines changed: 119 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -686,6 +686,13 @@ type Query {
686
686
"""Where filtering options for transactions."""
687
687
where: TransactionWhereInput
688
688
689
+
"""
690
+
Sort transactions.
691
+
692
+
Added in Saleor 3.23.
693
+
"""
694
+
sortBy: TransactionSortingInput
695
+
689
696
"""Return the elements in the list that come before the specified cursor."""
690
697
before: String
691
698
@@ -15183,6 +15190,13 @@ type Shop implements ObjectWithMetadata {
15183
15190
"""
15184
15191
preserveAllAddressFields: Boolean!
15185
15192
15193
+
"""
15194
+
Controls whether password-based authentication is allowed.
15195
+
15196
+
Added in Saleor 3.23.
15197
+
"""
15198
+
passwordLoginMode: PasswordLoginModeEnum!
15199
+
15186
15200
"""Include taxes in prices."""
15187
15201
includeTaxesInPrices: Boolean! @deprecated(reason: "Use `Channel.taxConfiguration.pricesEnteredWithTax` to determine whether prices are entered with tax.")
15188
15202
@@ -15286,6 +15300,21 @@ type Limits {
15286
15300
warehouses: Int
15287
15301
}
15288
15302
15303
+
"""
15304
+
Controls whether password-based authentication is allowed.
15305
+
15306
+
ENABLED - any user can log in with a password. This is the default behavior.
15307
+
CUSTOMERS_ONLY - only customer users can log in with a password.
15308
+
If a staff user logs in with a password, they will be treated as a customer
15309
+
— the issued token will not contain any staff permissions.
Filter by transaction events. Each list item represents conditions that must be satisfied by a single event. The filter matches transactions that have related events meeting all specified groups of conditions.
15596
+
15597
+
Added in Saleor 3.23.
15598
+
"""
15599
+
events: [TransactionEventFilterInput!]
15600
+
15551
15601
"""List of conditions that must be met."""
15552
15602
AND: [TransactionWhereInput!]
15553
15603
15554
15604
"""A list of conditions of which at least one must be met."""
* When enabled, address fields that are not valid for a given country (according to Google's i18n address data) will be preserved instead of being removed during validation. Validation errors are still returned.
8025
8054
*
@@ -8508,6 +8537,26 @@ export type TransactionCreateInput = {
/** Specifies the direction in which to sort transactions. */
8722
+
direction: OrderDirection;
8723
+
/** Sort transactions by the selected field. */
8724
+
field: TransactionSortField;
8725
+
};
8726
+
8649
8727
exportenumTransactionUpdateErrorCode{
8650
8728
GRAPHQL_ERROR='GRAPHQL_ERROR',
8651
8729
INCORRECT_CURRENCY='INCORRECT_CURRENCY',
@@ -8701,7 +8779,25 @@ export type TransactionWhereInput = {
8701
8779
OR?: InputMaybe<Array<TransactionWhereInput>>;
8702
8780
/** Filter by app identifier. */
8703
8781
appIdentifier?: InputMaybe<StringFilterInput>;
8782
+
/**
8783
+
* Filter transactions by created at date.
8784
+
*
8785
+
* Added in Saleor 3.23.
8786
+
*/
8787
+
createdAt?: InputMaybe<DateTimeRangeInput>;
8788
+
/**
8789
+
* Filter by transaction events. Each list item represents conditions that must be satisfied by a single event. The filter matches transactions that have related events meeting all specified groups of conditions.
0 commit comments