Is it at all possible to connect a workflow to my Jobber account, so that when we add or update clients & job statuses n8n will automatically update certain cells within google sheets? If so, where can I find a tutorial or workflow on that? I’ve been searching everywhere and trying to build my own but keep coming up short
I did a quick check and it seems Jobber’s API is GraphQL based.
https://developer.getjobber.com/docs/using_jobbers_api/api_queries_and_mutations/
n8n has a GraphQL node available, so yes it is possible,
yes, it works with GraphQL.
But there are some pitfalls with GraphQL and OAuth2 credentials. An automatic token refresh won’t work because gql returns an HTTP 20X still. –> A workaround would be to force a token refresh programmatically before the gql node and pass the token in the header.
–> I know, nobody asked but that’s the first challenge most people face when they want to use gql in n8n ![]()
1 Like
How do I implement it ?