Skip to content

Commit

Permalink
Trigger conversion error
Browse files Browse the repository at this point in the history
  • Loading branch information
gitmodimo authored and Rafał Hibner committed Nov 21, 2024
1 parent b1a4d0a commit bd85564
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions samples/today/schema.today.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ input CompleteTaskInput {
testTaskState: TaskState
isComplete: Boolean = true
clientMutationId: String
boolList: [Boolean!]
}

type CompleteTaskPayload {
Expand Down
3 changes: 2 additions & 1 deletion test/ClientTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ TEST_F(ClientCase, MutateCompleteTask)
{ std::make_unique<CompleteTaskInput>(CompleteTaskInput { today::getFakeTaskId(),
std::nullopt,
std::make_optional(true),
std::make_optional("Hi There!"s) }) });
std::make_optional("Hi There!"s),
std::vector<bool>({true,false}) }) });

auto state = std::make_shared<today::RequestState>(5);
auto result =
Expand Down

0 comments on commit bd85564

Please sign in to comment.