@@ -1446,9 +1446,9 @@ void OperationDefinitionVisitor::visit(
1446
1446
_resolverContext,
1447
1447
_params->state ,
1448
1448
_params->directives ,
1449
- {},
1450
- {},
1451
- {},
1449
+ std::shared_ptr<FragmentDefinitionDirectiveStack> {},
1450
+ std::shared_ptr<FragmentSpreadDirectiveStack> {},
1451
+ std::shared_ptr<FragmentSpreadDirectiveStack> {},
1452
1452
std::nullopt,
1453
1453
_launch,
1454
1454
};
@@ -1863,10 +1863,10 @@ AwaitableSubscribe Request::subscribe(RequestSubscribeParams params)
1863
1863
ResolverContext::NotifySubscribe,
1864
1864
registration->data ->state ,
1865
1865
registration->data ->directives ,
1866
- {},
1867
- {},
1868
- {},
1869
- {} ,
1866
+ std::shared_ptr<FragmentDefinitionDirectiveStack> {},
1867
+ std::shared_ptr<FragmentSpreadDirectiveStack> {},
1868
+ std::shared_ptr<FragmentSpreadDirectiveStack> {},
1869
+ std::nullopt ,
1870
1870
launch,
1871
1871
};
1872
1872
@@ -1925,10 +1925,10 @@ AwaitableUnsubscribe Request::unsubscribe(RequestUnsubscribeParams params)
1925
1925
ResolverContext::NotifyUnsubscribe,
1926
1926
registration->data ->state ,
1927
1927
registration->data ->directives ,
1928
- {},
1929
- {},
1930
- {},
1931
- {} ,
1928
+ std::shared_ptr<FragmentDefinitionDirectiveStack> {},
1929
+ std::shared_ptr<FragmentSpreadDirectiveStack> {},
1930
+ std::shared_ptr<FragmentSpreadDirectiveStack> {},
1931
+ std::nullopt ,
1932
1932
params.launch ,
1933
1933
};
1934
1934
0 commit comments