-
Notifications
You must be signed in to change notification settings - Fork 45
/
NodeObject.cpp
42 lines (30 loc) · 1.12 KB
/
NodeObject.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// WARNING! Do not edit this file manually, your changes will be overwritten.
#include "NodeObject.h"
#include "graphqlservice/internal/Schema.h"
#include "graphqlservice/introspection/IntrospectionSchema.h"
using namespace std::literals;
namespace graphql::today {
namespace object {
Node::Node(std::unique_ptr<const Concept> pimpl) noexcept
: service::Object { pimpl->getTypeNames(), pimpl->getResolvers() }
, _pimpl { std::move(pimpl) }
{
}
void Node::beginSelectionSet(const service::SelectionSetParams& params) const
{
_pimpl->beginSelectionSet(params);
}
void Node::endSelectionSet(const service::SelectionSetParams& params) const
{
_pimpl->endSelectionSet(params);
}
} // namespace object
void AddNodeDetails(const std::shared_ptr<schema::InterfaceType>& typeNode, const std::shared_ptr<schema::Schema>& schema)
{
typeNode->AddFields({
schema::Field::Make(R"gql(id)gql"sv, R"md()md"sv, std::nullopt, schema->WrapType(introspection::TypeKind::NON_NULL, schema->LookupType(R"gql(ID)gql"sv)))
});
}
} // namespace graphql::today