From 30ca2ac5852813bdb3e75e162947f3ef59bf7652 Mon Sep 17 00:00:00 2001 From: Kevin Carroll Date: Sun, 10 Jul 2022 12:18:45 -0700 Subject: [PATCH 1/2] added short to list of scalar types --- docs/execution/malicious-queries.md | 2 +- docs/types/scalars.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/execution/malicious-queries.md b/docs/execution/malicious-queries.md index 7f61f35..4e2cece 100644 --- a/docs/execution/malicious-queries.md +++ b/docs/execution/malicious-queries.md @@ -108,7 +108,7 @@ A complexity score is derived from these attributes: The `estimated complexity` of the query plan is the operation with the highest individual score. -The code for calculating the value can be seen in [`DefaultOperationComplexityCalculator`](https://github.com/graphql-aspnet/graphql-aspnet/blob/develop/src/graphql-aspnet/Defaults/DefaultOperationComplexityCalculator{TSchema}.cs) +The code for calculating the value can be seen in [`DefaultOperationComplexityCalculator`](https://github.com/graphql-aspnet/graphql-aspnet/blob/master/src/graphql-aspnet/Defaults/DefaultOperationComplexityCalculator%7BTSchema%7D.cs) > **_Beta Note_**: The exact calculation used for query complexity is still in flux and likely to change before v1.0 is finalized. If you have expertise in this arena and would like to weigh in on the values chosen or the computation formula in general please reach out on Github! We'd love to hear from you. diff --git a/docs/types/scalars.md b/docs/types/scalars.md index 2de7c5b..e055793 100644 --- a/docs/types/scalars.md +++ b/docs/types/scalars.md @@ -6,7 +6,7 @@ sidebar_label: Scalars Scalars are the most basic, fundamental unit of content in GraphQL. It is one of two leaf types (the other being [enums](./enums)). You can extend GraphQL with your own [custom scalars](../advanced/custom-scalars) when needed. -GraphQL ASP.NET has 18 built in scalar types. +GraphQL ASP.NET has 19 built in scalar types. | Scalar Name | .NET Type | Allowed Input Value | | -------------- | ---------------------- | ----------------------- | @@ -20,6 +20,7 @@ GraphQL ASP.NET has 18 built in scalar types. | Float | System.Single | Number | | Guid | System.Guid | String | | ID | GraphQL.AspNet.GraphId | String | +| Short | System.Int16 | Number | | Int | System.Int32 | Number | | Long | System.Int64 | Number | | String | System.String | String | From 7f5e39e0e0a9021539c8c7d3e89612037ee16303 Mon Sep 17 00:00:00 2001 From: Kevin Carroll Date: Sun, 10 Jul 2022 12:20:17 -0700 Subject: [PATCH 2/2] bumped version number --- website/pages/en/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/en/index.js b/website/pages/en/index.js index 022b0b0..79c3b29 100644 --- a/website/pages/en/index.js +++ b/website/pages/en/index.js @@ -31,7 +31,7 @@ class HomeSplash extends React.Component {

{GraphQL ASP.NET} {/*{siteConfig.tagline}*/} - v0.10.1-beta + v0.10.2-beta

);