Skip to content

Commit 05002dd

Browse files
committed
fix: get rid of compile warnings in tests code
1 parent 1ff3fb6 commit 05002dd

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/support/resources/channel/channel_simple.ex

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ defmodule AshGraphql.Test.ChannelSimple do
1515
type :channel_simple
1616

1717
mutations do
18-
update :update_channel, :update_channel, read_action: :read_channel, identity: false
18+
update :update_channel, :update_channel,
19+
read_action: :read_channel,
20+
identity: false,
21+
hide_inputs: [:channel]
1922
end
2023
end
2124

@@ -81,6 +84,7 @@ defmodule AshGraphql.Test.ChannelSimple do
8184
constraints(instance_of: AshGraphql.Test.Channel)
8285
allow_nil?(false)
8386
public?(true)
87+
filterable?(false)
8488
end
8589

8690
create_timestamp(:created_at, public?: true)

0 commit comments

Comments
 (0)