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
This PR will create the base for the MCP server integration that is
coming with Hot Chocolate 16.
- upgrades packages
- upgrades type interceptors
- upgrades executor hooks
#2789
---------
Co-authored-by: souvikghosh04 <[email protected]>
Co-authored-by: RubenCerna2079 <[email protected]>
/// <param name="processLiterals">Parametrizes literals before they are written in string predicate operands</param>
511
511
privatePredicateParseAndOr(
512
512
IMiddlewareContextctx,
513
-
IInputFieldargumentSchema,
514
-
IInputFieldfilterArgumentSchema,
513
+
IInputValueDefinitionargumentSchema,
514
+
IInputValueDefinitionfilterArgumentSchema,
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 IInputField object which describes the schema of the scalar input argument (e.g. IntFilterInput)</param>
603
+
/// <param name="argumentSchema">An IInputValueDefinition 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