divad1196 / odoo_graphql

Graphql Generic integration in Odoo
Other
21 stars 9 forks source link
graphql odoo web website

README

Graphql provides a simplier and more efficient way to query data than you would currently do in Odoo (using for example xmlrpc or jsonrpc).

This module adds a generic way to do graphql queries and mutations on Odoo server. This module takes into account any installed modules and use the Odoo permissions (Access rights and access rules).

query Tickets {
    HelpdeskTicket(domain: $domain, limit: $limit) {
        name
        description
        user: user_id @include(if: $user_info) {
            name
        }
        stage_id {
            name
        }
        partner_id @include(if: $partner_id)  {
            image: image_1920 @include(if: $image)
            user_id {
                name
            }
        }
    }
}

To use the query:

requests.get("https://myodoo.com/graphql",
    # headers={"Content-type": "application/graphql"},  # Not required currently but recommended
    data={
        "query": myquery,
        "variables": {},  # Optional
        # https://dgraph.io/docs/graphql/api/multiples/#multiple-operations
        "operationName": None  # Optional, used for multi-operation document
    },
)

You can also perform mutations

mutation Test {
    tickets: HelpdeskTicket(domain: $domain, vals: {name: $name, description: $description}) {
        name
    }
}

It will:

This can be used in the same way in any other languages, as javascript. Be aware that this module DOES NOT HANDLE CORS, that means that without any other changes, you will only be able to make queries from the Odoo frontend in javascript, but not from an extenal website (see below for more informations).

Introspection

Introspection is not fully working for the moment but works for the integrated GraphiQL Editor. The editor must NOT be active on production database: it exposes your whole database schema, this will help attackers to gain informations about your Odoo. Also, parsing introspection is a lot heavier than normal queries.

Therefore, the GraphiQL Editor AND the introspection in general are DISABLED BY DEFAULT. To activate bother the editor and introspection, you need to create (it does not exist by default) the odoo_graphql.introspection system parameter to True (case insensitive)

introspection_system_parameter

Nb: To access it: (in developer/debug mode) Settings -> Technical -> System Parameters Then just click "Create"

graphiql

GraphiQL is available at /graphiql (just that, nothing else) graphiql_url

External Website

You may want to create a custom website for your Odoo using modern technolgies as VueJS, ReactJS, ... You can do it without this module using a proxy (E.g.: see my side project odoo_nginx_proxy) and using the already existings routes and xmlrpc/jsonrpc. (Modules allowing it may exists)

You will then need to allow many parameters to be able to fetch your Odoo. BUT all of this is already done for you:

If you have an url authorizing your website, you may want to use the library provided in this module graphql.js

const odoo = odoo_builder(myurl, "open-net-test");  // Nb: myurl is a string

// it provides you with a simple way to login/logout and to retrieve your sessions information
let session = await odoo.login(login, password);
// session = await odoo.session()
odoo.logout();

// And obviously, it allows you to make graphql queries
odoo.graphql(
    myquery,       // Mandatory
    myvariables,   // Optional
    operationName, // Optional, only usefull for multi-operation document
)

Nb: Those works using the defaults routes of Odoo. If you have changed them using your proxy, you will need to make your own _odoobuilder. To help you, the __odooutils structure is made for you.