./ct_report/coverage/mongoose_graphql_user_mutation.COVER.html

1 -module(mongoose_graphql_user_mutation).
2 -behaviour(mongoose_graphql).
3
4 -export([execute/4]).
5
6 -ignore_xref([execute/4]).
7
8 execute(_Ctx, _Obj, <<"account">>, _Args) ->
9 3 {ok, account};
10 execute(_Ctx, _Obj, <<"muc_light">>, _Args) ->
11 27 {ok, muc_light};
12 execute(_Ctx, _Obj, <<"stanza">>, _Args) ->
13 7 {ok, stanza};
14 execute(_Ctx, _Obj, <<"roster">>, _Args) ->
15 18 {ok, roster}.
Line Hits Source