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 | 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

);