-
-
Notifications
You must be signed in to change notification settings - Fork 748
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
888fa21
commit 3146208
Showing
190 changed files
with
7,570 additions
and
1,715 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/CookieCrumble/src/CookieCrumble/Formatters/QueryPlanSnapshotValueFormatter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#if NET6_0_OR_GREATER | ||
#if NET7_0_OR_GREATER | ||
using System.Buffers; | ||
using HotChocolate.Fusion.Planning; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
src/HotChocolate/Fusion/src/Abstractions/FusionAbstractionResources.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
src/HotChocolate/Fusion/src/Abstractions/FusionAbstractionResources.resx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<root> | ||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> | ||
<xsd:element name="root" msdata:IsDataSet="true"> | ||
|
||
</xsd:element> | ||
</xsd:schema> | ||
<resheader name="resmimetype"> | ||
<value>text/microsoft-resx</value> | ||
</resheader> | ||
<resheader name="version"> | ||
<value>1.3</value> | ||
</resheader> | ||
<resheader name="reader"> | ||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | ||
</resheader> | ||
<resheader name="writer"> | ||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> | ||
</resheader> | ||
<data name="FusionTypeNames_NoSchemaDef" xml:space="preserve"> | ||
<value>The provided document must at least contain a schema definition.</value> | ||
</data> | ||
</root> |
53 changes: 53 additions & 0 deletions
53
src/HotChocolate/Fusion/src/Abstractions/FusionDirectiveArgumentNames.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
namespace HotChocolate.Fusion; | ||
|
||
/// <summary> | ||
/// Defines the names of the arguments that can be used with the fusion directives. | ||
/// </summary> | ||
internal static class FusionDirectiveArgumentNames | ||
{ | ||
/// <summary> | ||
/// Gets the name of the name argument. | ||
/// </summary> | ||
public const string NameArg = "name"; | ||
|
||
/// <summary> | ||
/// Gets the name of the select argument. | ||
/// </summary> | ||
public const string SelectArg = "select"; | ||
|
||
/// <summary> | ||
/// Gets the name of the argument argument. | ||
/// </summary> | ||
public const string ArgumentArg = "argument"; | ||
|
||
/// <summary> | ||
/// Gets the name of the type argument. | ||
/// </summary> | ||
public const string TypeArg = "type"; | ||
|
||
/// <summary> | ||
/// Gets the name of the subgraph argument. | ||
/// </summary> | ||
public const string SubgraphArg = "subgraph"; | ||
|
||
/// <summary> | ||
/// Gets the name of the prefix argument. | ||
/// </summary> | ||
public const string PrefixArg = "prefix"; | ||
|
||
/// <summary> | ||
/// Gets the name of the self prefix argument. | ||
/// </summary> | ||
public const string PrefixSelfArg = "prefixSelf"; | ||
|
||
/// <summary> | ||
/// Gets the name of the version argument. | ||
/// </summary> | ||
public const string VersionArg = "version"; | ||
|
||
/// <summary> | ||
/// Gets the name of the base address argument. | ||
/// </summary> | ||
public const string BaseAddressArg = "baseAddress"; | ||
} | ||
|
63 changes: 63 additions & 0 deletions
63
src/HotChocolate/Fusion/src/Abstractions/FusionTypeBaseNames.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
namespace HotChocolate.Fusion; | ||
|
||
/// <summary> | ||
/// The base type names for the fusion gateway. | ||
/// </summary> | ||
internal static class FusionTypeBaseNames | ||
{ | ||
/// <summary> | ||
/// The base name of the variable directive. | ||
/// </summary> | ||
public const string VariableDirective = "variable"; | ||
|
||
/// <summary> | ||
/// The base name of the resolver directive. | ||
/// </summary> | ||
public const string ResolverDirective = "resolver"; | ||
|
||
/// <summary> | ||
/// The base name of the source directive. | ||
/// </summary> | ||
public const string SourceDirective = "source"; | ||
|
||
/// <summary> | ||
/// The base name of the is directive. | ||
/// </summary> | ||
public const string IsDirective = "is"; | ||
|
||
/// <summary> | ||
/// The base name of the HTTP directive. | ||
/// </summary> | ||
public const string HttpDirective = "httpClient"; | ||
|
||
/// <summary> | ||
/// The base name of the fusion directive. | ||
/// </summary> | ||
public const string FusionDirective = "fusion"; | ||
|
||
/// <summary> | ||
/// The base name of the GraphQL selection directive. | ||
/// </summary> | ||
public const string Selection = "Selection"; | ||
|
||
/// <summary> | ||
/// The base name of the GraphQL selection set directive. | ||
/// </summary> | ||
public const string SelectionSet = "SelectionSet"; | ||
|
||
/// <summary> | ||
/// The base name of the GraphQL type name scalar. | ||
/// </summary> | ||
public const string TypeName = "TypeName"; | ||
|
||
/// <summary> | ||
/// The base name of the GraphQL type scalar. | ||
/// </summary> | ||
public const string Type = "Type"; | ||
|
||
/// <summary> | ||
/// The base name of the URI scalar. | ||
/// </summary> | ||
public const string Uri = "Uri"; | ||
} | ||
|
Oops, something went wrong.