-
-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by sbidoul
- Loading branch information
Showing
24 changed files
with
254 additions
and
195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * graphql_base | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 16.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2024-01-15 17:34+0000\n" | ||
"Last-Translator: mymage <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: it\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Weblate 4.17\n" | ||
|
||
#. module: graphql_base | ||
#: model_terms:ir.ui.view,arch_db:graphql_base.graphiql | ||
msgid "Loading..." | ||
msgstr "Caricamento ..." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["whool"] | ||
build-backend = "whool.buildapi" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
This modules enables the creation of [GraphQL](https://graphql.org/) | ||
endpoints. In itself, it does nothing and must be used by a developer to | ||
create the GraphQL schema and resolvers using | ||
[graphene](https://graphene-python.org/), and expose them through a | ||
controller. An example is available in the `graphql_demo` module. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
To use this module, you need to | ||
|
||
- create your graphene schema | ||
- create your controller to expose your GraphQL endpoint, and | ||
optionally a GraphiQL IDE. | ||
|
||
This module does not attempt to expose the whole Odoo object model. This | ||
could be the purpose of another module based on this one. We believe | ||
however that it is preferable to expose a specific well tested endpoint | ||
for each customer, so as to reduce coupling by knowing precisely what is | ||
exposed and needs to be tested when upgrading Odoo. | ||
|
||
To start working with this module, we recommend the following approach: | ||
|
||
- Learn [GraphQL basics](https://graphql.org/learn/) | ||
- Learn [graphene](https://graphene-python.org/), the python library | ||
used to create GraphQL schemas and resolvers. | ||
- Examine the `graphql_demo` module in this repo, copy it, adapt the | ||
controller to suit your needs (routes, authentication methods). | ||
- Start building your own schema and resolver. | ||
|
||
## Building your schema | ||
|
||
The schema can be built using native graphene types. An | ||
`odoo.addons.graphql_base.types.OdooObjectType` is provided as a | ||
convenience. It is a graphene `ObjectType` with a default attribute | ||
resolver which: | ||
|
||
- converts False to None (except for Boolean types), to avoid Odoo's | ||
weird `False` strings being rendered as json `"false"`; | ||
- adds the user timezone to Datetime fields; | ||
- raises an error if an attribute is absent to avoid field name typing | ||
errors. | ||
|
||
## Creating GraphQL controllers | ||
|
||
The module provides an `odoo.addons.graphql_base.GraphQLControllerMixin` | ||
class to help you build GraphQL controllers providing GraphiQL and/or | ||
GraphQL endpoints. | ||
|
||
``` python | ||
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) | ||
|
||
# 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) | ||
``` |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.