Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/execution/malicious-queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<TSchema>`](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<TSchema>`](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.

Expand Down
3 changes: 2 additions & 1 deletion docs/types/scalars.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
| -------------- | ---------------------- | ----------------------- |
Expand All @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion website/pages/en/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class HomeSplash extends React.Component {
<h2 className="projectTitle">
{<span>GraphQL ASP.NET</span>}
{/*<small>{siteConfig.tagline}</small>*/}
<small>v0.10.1-beta</small>
<small>v0.10.2-beta</small>
</h2>
);

Expand Down