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
## Why make this change?
- We need to create the new stable release for version 1.7, this cannot
be currently done since the branch currently has only part of the
upgrades needed for Hot Chocolate 16 as it is still in release candidate
mode.
## What is this change?
We got rid of all the changes that were made related to Hot Chocolate 16
back into version 15.
- Related PR: #2822
- This reverts commit 271cbf4.
## How was this tested?
This is a reversion, only the current tests that exist need to pass.
/// <param name="processLiterals">Parametrizes literals before they are written in string predicate operands</param>
511
511
privatePredicateParseAndOr(
512
512
IMiddlewareContextctx,
513
-
IInputValueDefinitionargumentSchema,
514
-
IInputValueDefinitionfilterArgumentSchema,
513
+
IInputFieldargumentSchema,
514
+
IInputFieldfilterArgumentSchema,
515
515
List<IValueNode>fields,
516
516
BaseQueryStructurebaseQuery,
517
517
PredicateOperationop)
@@ -600,14 +600,14 @@ public static class FieldFilterParser
600
600
/// Parse a scalar field into a predicate
601
601
/// </summary>
602
602
/// <param name="ctx">The GraphQL context, used to get the query variables</param>
603
-
/// <param name="argumentSchema">An IInputValueDefinition object which describes the schema of the scalar input argument (e.g. IntFilterInput)</param>
603
+
/// <param name="argumentSchema">An IInputField object which describes the schema of the scalar input argument (e.g. IntFilterInput)</param>
604
604
/// <param name="column">The table column targeted by the field</param>
605
605
/// <param name="fields">The subfields of the scalar field</param>
606
606
/// <param name="processLiterals">Parametrizes literals before they are written in string predicate operands</param>
607
607
/// <param name="isListType">Flag which gives a hint about the node type in the given schema. only for CosmosDB it can be of list type. Refer <a href=https://learn.microsoft.com/en-us/azure/cosmos-db/nosql/query/array-contains>here</a>.</param>
/// <param name="entityToExposedColumns">Dictionary to store all the entities and their corresponding exposed column names referenced in the mutation.</param>
2174
2174
/// <param name="schema">Schema for the input field.</param>
2175
2175
/// <param name="entityName">Name of the entity.</param>
0 commit comments