Skip to content

Commit 757968e

Browse files
gitmodimorafalh
authored and
rafalh
committed
Trigger conversion error
1 parent b1a4d0a commit 757968e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

samples/today/schema.today.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ input CompleteTaskInput {
8787
testTaskState: TaskState
8888
isComplete: Boolean = true
8989
clientMutationId: String
90+
boolList: [Boolean!]
9091
}
9192

9293
type CompleteTaskPayload {

test/ClientTests.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,8 @@ TEST_F(ClientCase, MutateCompleteTask)
246246
{ std::make_unique<CompleteTaskInput>(CompleteTaskInput { today::getFakeTaskId(),
247247
std::nullopt,
248248
std::make_optional(true),
249-
std::make_optional("Hi There!"s) }) });
249+
std::make_optional("Hi There!"s) }),
250+
std::vector<bool>({true,false})});
250251

251252
auto state = std::make_shared<today::RequestState>(5);
252253
auto result =

0 commit comments

Comments
 (0)