Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update chillicream-gql #1684

Merged
merged 3 commits into from
Dec 31, 2023
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 .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"commands": ["docfx"]
},
"strawberryshake.tools": {
"version": "13.7.0",
"version": "13.8.1",
"commands": ["dotnet-graphql"]
},
"dotnet-outdated-tool": {
Expand Down
42 changes: 21 additions & 21 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -31,27 +31,27 @@
<PackageVersion Include="Grpc.AspNetCore" Version="2.59.0" />
<PackageVersion Include="Humanizer.Core" Version="2.14.1" />
<PackageVersion Include="Hellang.Middleware.ProblemDetails" Version="6.5.1" />
<PackageVersion Include="HotChocolate" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Abstractions" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.AspNetCore" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Data" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Diagnostics" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Execution.Abstractions" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Data.AutoMapper" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Data.EntityFramework" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Data.Spatial" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Types.Analyzers" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Types.CursorPagination" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Types.OffsetPagination" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Types.NodaTime" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate.Types.Spatial" Version="14.0.0-p.15" />
<PackageVersion Include="StrawberryShake.Transport.Http" Version="14.0.0-p.15" />
<PackageVersion Include="StrawberryShake" Version="14.0.0-p.15" />
<PackageVersion Include="StrawberryShake.Core" Version="14.0.0-p.15" />
<PackageVersion Include="StrawberryShake.Server" Version="14.0.0-p.15" />
<PackageVersion Include="StrawberryShake.Maui" Version="14.0.0-p.15" />
<PackageVersion Include="StrawberryShake.Blazor" Version="14.0.0-p.15" />
<PackageVersion Include="StrawberryShake.Razor" Version="14.0.0-p.15" />
<PackageVersion Include="HotChocolate" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Abstractions" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.AspNetCore" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Data" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Diagnostics" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Execution.Abstractions" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Data.AutoMapper" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Data.EntityFramework" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Data.Spatial" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Types.Analyzers" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Types.CursorPagination" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Types.OffsetPagination" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Types.NodaTime" Version="14.0.0-p.22" />
<PackageVersion Include="HotChocolate.Types.Spatial" Version="14.0.0-p.22" />
<PackageVersion Include="StrawberryShake.Transport.Http" Version="14.0.0-p.22" />
<PackageVersion Include="StrawberryShake" Version="14.0.0-p.22" />
<PackageVersion Include="StrawberryShake.Core" Version="14.0.0-p.22" />
<PackageVersion Include="StrawberryShake.Server" Version="14.0.0-p.22" />
<PackageVersion Include="StrawberryShake.Maui" Version="14.0.0-p.22" />
<PackageVersion Include="StrawberryShake.Blazor" Version="14.0.0-p.22" />
<PackageVersion Include="StrawberryShake.Razor" Version="14.0.0-p.22" />
<PackageVersion Include="MediatR" Version="12.2.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -527,12 +527,6 @@ enum SortEnumType {
DESC
}

"The `@specifiedBy` directive is used within the type system definition language to provide a URL for specifying the behavior of custom scalar definitions."
directive @specifiedBy("The specifiedBy URL points to a human-readable specification. This field will only read a result for scalar types." url: String!) on SCALAR

"The @tag directive is used to apply arbitrary string\nmetadata to a schema location. Custom tooling can use\nthis metadata during any step of the schema delivery flow,\nincluding composition, static analysis, and documentation.\n \n\ninterface Book {\n id: ID! @tag(name: \"your-value\")\n title: String!\n author: String!\n}"
directive @tag("The name of the tag." name: String!) repeatable on SCHEMA | SCALAR | OBJECT | FIELD_DEFINITION | ARGUMENT_DEFINITION | INTERFACE | UNION | ENUM | ENUM_VALUE | INPUT_OBJECT | INPUT_FIELD_DEFINITION

"A coordinate is an array of positions."
scalar Coordinates

Expand Down
Loading