./ct_report/coverage/mongoose_graphql_domain.COVER.html

1 -module(mongoose_graphql_domain).
2
3 -export([execute/4]).
4
5 -ignore_xref([execute/4]).
6
7 execute(_Ctx, #{host_type := HostType}, <<"hostType">>, _Args) ->
8
:-(
{ok, HostType};
9 execute(_Ctx, #{status := Status}, <<"status">>, _Args) ->
10
:-(
{ok, Status};
11 execute(_Ctx, #{domain := Name}, <<"domain">>, _Args) ->
12
:-(
{ok, Name};
13 execute(_Ctx, #{}, _, _Args) ->
14
:-(
{ok, null}.
Line Hits Source