diff --git a/swh/graphql/app.py b/swh/graphql/app.py index 34cb7c0..622ce55 100644 --- a/swh/graphql/app.py +++ b/swh/graphql/app.py @@ -1,43 +1,43 @@ # Copyright (C) 2022 The Software Heritage developers # See the AUTHORS file at the top-level directory of this distribution # License: GNU General Public License version 3, or any later version # See top-level LICENSE file for more information # import pkg_resources import os from pathlib import Path from ariadne import gql, load_schema_from_path, make_executable_schema from .resolvers import resolvers, scalars type_defs = gql( - # pkg_resources.resource_string("swh.graphql", "schem/schema.graphql").decode() + # pkg_resources.resource_string("swh.graphql", "schema/schema.graphql").decode() load_schema_from_path( os.path.join(Path(__file__).parent.resolve(), "schema", "schema.graphql") ) ) schema = make_executable_schema( type_defs, resolvers.query, resolvers.origin, resolvers.visit, resolvers.visit_status, resolvers.snapshot, resolvers.snapshot_branch, resolvers.revision, resolvers.release, resolvers.directory, resolvers.directory_entry, resolvers.search_result, resolvers.branch_target, resolvers.release_target, resolvers.directory_entry_target, resolvers.search_result_target, resolvers.binary_string, scalars.id_scalar, scalars.datetime_scalar, scalars.swhid_scalar, scalars.content_hash_scalar, )