Skip to content

Commit 8dba8ea

Browse files
Added short to list of scalar types (#20)
* added short to list of scalar types
1 parent b7eda5e commit 8dba8ea

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/execution/malicious-queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ A complexity score is derived from these attributes:
108108

109109
The `estimated complexity` of the query plan is the operation with the highest individual score.
110110

111-
The code for calculating the value can be seen in [`DefaultOperationComplexityCalculator<TSchema>`](https://github.com/graphql-aspnet/graphql-aspnet/blob/develop/src/graphql-aspnet/Defaults/DefaultOperationComplexityCalculator{TSchema}.cs)
111+
The code for calculating the value can be seen in [`DefaultOperationComplexityCalculator<TSchema>`](https://github.com/graphql-aspnet/graphql-aspnet/blob/master/src/graphql-aspnet/Defaults/DefaultOperationComplexityCalculator%7BTSchema%7D.cs)
112112

113113
> **_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.
114114

docs/types/scalars.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar_label: Scalars
66

77
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.
88

9-
GraphQL ASP.NET has 18 built in scalar types.
9+
GraphQL ASP.NET has 19 built in scalar types.
1010

1111
| Scalar Name | .NET Type | Allowed Input Value |
1212
| -------------- | ---------------------- | ----------------------- |
@@ -20,6 +20,7 @@ GraphQL ASP.NET has 18 built in scalar types.
2020
| Float | System.Single | Number |
2121
| Guid | System.Guid | String |
2222
| ID | GraphQL.AspNet.GraphId | String |
23+
| Short | System.Int16 | Number |
2324
| Int | System.Int32 | Number |
2425
| Long | System.Int64 | Number |
2526
| String | System.String | String |

website/pages/en/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class HomeSplash extends React.Component {
3131
<h2 className="projectTitle">
3232
{<span>GraphQL ASP.NET</span>}
3333
{/*<small>{siteConfig.tagline}</small>*/}
34-
<small>v0.10.1-beta</small>
34+
<small>v0.10.2-beta</small>
3535
</h2>
3636
);
3737

0 commit comments

Comments
 (0)