mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 10:32:00 +02:00
23 lines
796 B
Python
23 lines
796 B
Python
# Copyright 2018 ACSONE SA/NV
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
|
|
|
from odoo import http
|
|
|
|
from odoo.addons.graphql_base import GraphQLControllerMixin
|
|
|
|
from ..schema import schema
|
|
|
|
|
|
class GraphQLController(http.Controller, GraphQLControllerMixin):
|
|
|
|
# The GraphiQL route, providing an IDE for developers
|
|
@http.route("/graphiql/demo", auth="user")
|
|
def graphiql(self, **kwargs):
|
|
return self._handle_graphiql_request(schema.graphql_schema)
|
|
|
|
# The graphql route, for applications.
|
|
# Note csrf=False: you may want to apply extra security
|
|
# (such as origin restrictions) to this route.
|
|
@http.route("/graphql/demo", auth="user", csrf=False)
|
|
def graphql(self, **kwargs):
|
|
return self._handle_graphql_request(schema.graphql_schema)
|