Skip to content
This repository was archived by the owner on Feb 7, 2025. It is now read-only.

Remove useless argument #126

Merged
merged 1 commit into from
Feb 12, 2024
Merged
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
7 changes: 1 addition & 6 deletions backend/app/Savor22b/GraphTypes/Query/Query.cs
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,6 @@ swarm is null
Name = "publicKey",
Description = "The base64-encoded public key for Transaction.",
},
new QueryArgument<NonNullGraphType<GuidGraphType>>
{
Name = "seedStateId",
Description = "Seed state Id (Guid)",
},
new QueryArgument<NonNullGraphType<IntGraphType>>
{
Name = "fieldIndex",
Expand All @@ -249,7 +244,7 @@ swarm is null
);

var action = new PlantingSeedAction(
context.GetArgument<Guid>("seedStateId"),
Guid.NewGuid(),
context.GetArgument<int>("fieldIndex"),
context.GetArgument<Guid>("itemStateIdToUse")
);
Expand Down
Loading