Skip to content

Commit

Permalink
update graphql schema
Browse files Browse the repository at this point in the history
  • Loading branch information
hdiniz committed May 13, 2024
1 parent d49368d commit 0d31ba0
Showing 1 changed file with 148 additions and 0 deletions.
148 changes: 148 additions & 0 deletions server/graphql/schemaV2.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,16 @@ interface Account {
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 560 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'Account.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 565 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'Account.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -574,6 +584,7 @@ interface Account {
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 586 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'Account.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 587 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'Account.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down Expand Up @@ -2217,6 +2228,16 @@ type Host implements Account & AccountWithContributions {
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 2234 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'Host.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 2239 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'Host.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -2237,6 +2258,7 @@ type Host implements Account & AccountWithContributions {
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 2260 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'Host.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 2261 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'Host.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down Expand Up @@ -3503,6 +3525,14 @@ enum AccountOrdersFilter {
OUTGOING
}

"""
Expected funds filter (MANUAL or PENDING)
"""
enum ExpectedFundsFilter {

Check notice on line 3531 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Type 'ExpectedFundsFilter' was added

Type 'ExpectedFundsFilter' was added
PENDING
MANUAL
}

"""
A collection of "Expenses"
"""
Expand Down Expand Up @@ -4511,6 +4541,16 @@ type PaymentMethod {
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 4547 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'PaymentMethod.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 4552 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'PaymentMethod.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -4531,6 +4571,7 @@ type PaymentMethod {
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 4573 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'PaymentMethod.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 4574 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'PaymentMethod.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down Expand Up @@ -5703,6 +5744,10 @@ enum ActivityType {
ORDER_PENDING_CONTRIBUTION_REMINDER
ORDER_PROCESSING
ORDER_PAYMENT_FAILED
ORDER_REVIEW_OPENED

Check warning on line 5747 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Enum value 'ORDER_REVIEW_OPENED' was added to enum 'ActivityType'

Adding an enum value may break existing clients that were not programming defensively against an added case when querying an enum.
ORDER_REVIEW_CLOSED

Check warning on line 5748 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Enum value 'ORDER_REVIEW_CLOSED' was added to enum 'ActivityType'

Adding an enum value may break existing clients that were not programming defensively against an added case when querying an enum.
ORDER_DISPUTE_CREATED

Check warning on line 5749 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Enum value 'ORDER_DISPUTE_CREATED' was added to enum 'ActivityType'

Adding an enum value may break existing clients that were not programming defensively against an added case when querying an enum.
ORDER_DISPUTE_CLOSED

Check warning on line 5750 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Enum value 'ORDER_DISPUTE_CLOSED' was added to enum 'ActivityType'

Adding an enum value may break existing clients that were not programming defensively against an added case when querying an enum.
ORDER_THANKYOU
ORDER_UPDATED
VENDOR_CREATED
Expand Down Expand Up @@ -7344,6 +7389,16 @@ type Bot implements Account {
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 7395 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'Bot.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 7400 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'Bot.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -7364,6 +7419,7 @@ type Bot implements Account {
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 7421 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'Bot.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 7422 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'Bot.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down Expand Up @@ -8089,6 +8145,16 @@ type Collective implements Account & AccountWithHost & AccountWithContributions
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 8151 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'Collective.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 8156 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'Collective.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -8109,6 +8175,7 @@ type Collective implements Account & AccountWithHost & AccountWithContributions
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 8177 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'Collective.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 8178 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'Collective.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down Expand Up @@ -9287,6 +9354,16 @@ type Event implements Account & AccountWithHost & AccountWithContributions & Acc
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 9360 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'Event.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 9365 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'Event.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -9307,6 +9384,7 @@ type Event implements Account & AccountWithHost & AccountWithContributions & Acc
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 9386 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'Event.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 9387 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'Event.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down Expand Up @@ -10267,6 +10345,16 @@ type Individual implements Account {
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 10351 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'Individual.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 10356 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'Individual.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -10287,6 +10375,7 @@ type Individual implements Account {
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 10377 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'Individual.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 10378 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'Individual.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down Expand Up @@ -11218,6 +11307,16 @@ type Organization implements Account & AccountWithContributions {
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 11313 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'Organization.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 11318 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'Organization.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -11238,6 +11337,7 @@ type Organization implements Account & AccountWithContributions {
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 11339 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'Organization.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 11340 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'Organization.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down Expand Up @@ -12063,6 +12163,16 @@ type Vendor implements Account & AccountWithContributions {
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 12169 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'Vendor.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 12174 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'Vendor.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -12083,6 +12193,7 @@ type Vendor implements Account & AccountWithContributions {
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 12195 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'Vendor.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 12196 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'Vendor.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down Expand Up @@ -13140,6 +13251,16 @@ type Query {
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 13257 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'Query.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 13262 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'Query.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -13160,6 +13281,7 @@ type Query {
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 13283 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'Query.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 13284 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'Query.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down Expand Up @@ -14871,6 +14993,10 @@ enum ActivityAndClassesType {
ORDER_PENDING_CONTRIBUTION_REMINDER
ORDER_PROCESSING
ORDER_PAYMENT_FAILED
ORDER_REVIEW_OPENED

Check warning on line 14996 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Enum value 'ORDER_REVIEW_OPENED' was added to enum 'ActivityAndClassesType'

Adding an enum value may break existing clients that were not programming defensively against an added case when querying an enum.
ORDER_REVIEW_CLOSED

Check warning on line 14997 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Enum value 'ORDER_REVIEW_CLOSED' was added to enum 'ActivityAndClassesType'

Adding an enum value may break existing clients that were not programming defensively against an added case when querying an enum.
ORDER_DISPUTE_CREATED

Check warning on line 14998 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Enum value 'ORDER_DISPUTE_CREATED' was added to enum 'ActivityAndClassesType'

Adding an enum value may break existing clients that were not programming defensively against an added case when querying an enum.
ORDER_DISPUTE_CLOSED

Check warning on line 14999 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Enum value 'ORDER_DISPUTE_CLOSED' was added to enum 'ActivityAndClassesType'

Adding an enum value may break existing clients that were not programming defensively against an added case when querying an enum.
ORDER_THANKYOU
ORDER_UPDATED
VENDOR_CREATED
Expand Down Expand Up @@ -15366,6 +15492,16 @@ type Fund implements Account & AccountWithHost & AccountWithContributions {
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 15498 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'Fund.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 15503 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'Fund.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -15386,6 +15522,7 @@ type Fund implements Account & AccountWithHost & AccountWithContributions {
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 15524 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'Fund.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 15525 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'Fund.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down Expand Up @@ -16224,6 +16361,16 @@ type Project implements Account & AccountWithHost & AccountWithContributions & A
"""
dateTo: DateTime

"""
Only return pending orders that were expected after this date
"""
expectedDateFrom: DateTime

Check warning on line 16367 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateFrom: DateTime' added to field 'Project.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Only return pending orders that were expected before this date
"""
expectedDateTo: DateTime

Check warning on line 16372 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedDateTo: DateTime' added to field 'Project.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
The term to search
"""
Expand All @@ -16244,6 +16391,7 @@ type Project implements Account & AccountWithHost & AccountWithContributions & A
Only return orders that are or were expected funds.
"""
onlyExpectedFunds: Boolean

Check warning on line 16393 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'onlyExpectedFunds: Boolean' added to field 'Project.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.
expectedFundsFilter: ExpectedFundsFilter

Check warning on line 16394 in server/graphql/schemaV2.graphql

View workflow job for this annotation

GitHub Actions / GraphQL Inspector - Schema v2

Argument 'expectedFundsFilter: ExpectedFundsFilter' added to field 'Project.orders'

Adding a new argument to an existing field may involve a change in resolve function logic that potentially may cause some side effects.

"""
Return only orders made from/to that opposite account (only works when orders are already filtered with a main account)
Expand Down

0 comments on commit 0d31ba0

Please sign in to comment.