<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: GraphQl in Talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314314#M85090</link>
    <description>&lt;P&gt;Hi rhall,&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;mutation{ upsertEntity(entity: { name:"ABC World"}) {id}}&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;when I try to post the same JSON in GraphQL Playground Link I am able to receive response,&lt;/P&gt;
&lt;P&gt;Please let me know is there any specific component designed to handle GraphQL calls.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance,&lt;/P&gt;
&lt;P&gt;Archanalg&lt;/P&gt;</description>
    <pubDate>Mon, 28 Oct 2019 17:22:08 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-10-28T17:22:08Z</dc:date>
    <item>
      <title>GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314306#M85082</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have to use a GraphQL API in talend but I can't do it.&lt;/P&gt; 
&lt;P&gt;The goal is to get data from another API with a tjava, then i link the tjava with a tmap and to finish i use the tmap to do a request like : '&lt;FONT&gt;{"query": "mutation { saveForm(formInput: {wasteDetails{name : ' + row1.wdName + '}) {id,wasteDetails{name}} }" }'&lt;/FONT&gt;&lt;/P&gt; 
&lt;P&gt;I try 3 differents way.&lt;BR /&gt;The first way was with tRest but we can't link a tmap to a tRest&lt;/P&gt; 
&lt;P&gt;The second way was with a tRestClient but I don't know what put in parameters in my url so I've had a http 500 errors&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;And the third way was with thttprequest but i don't know how to use the row of my tmap in my file for the post of the thttprequest&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;FONT&gt;I hope I'm clear enough&lt;/FONT&gt;&lt;/P&gt; 
&lt;P&gt;T&lt;FONT&gt;hank you in advance&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 05:24:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314306#M85082</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T05:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314307#M85083</link>
      <description>&lt;P&gt;Can you send a screenshot of your job as it is at the moment? It sounds like you are using a Java API (via an imported Jar?) to get your data. You are then building an JSON String with your tMap and then trying to send that to a web service?&lt;/P&gt; 
&lt;P&gt;If that is correct, I would use a tRestClient to call GraphQL and ensure that your send the JSON via the string column (tRestClient needs either a string or body column....string for JSON, body for XML).&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 09:35:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314307#M85083</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-02T09:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314308#M85084</link>
      <description>&lt;P&gt;My job looks like that :&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="job.PNG" style="width: 523px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M65P.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142369iFB08447285F7EE32/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M65P.png" alt="0683p000009M65P.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My tjava :&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="java.PNG" style="width: 532px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M65U.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156548i8CF4101B9F4FF14C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M65U.png" alt="0683p000009M65U.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The result is a huge xml.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;My tExtractXMLField_1 :&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xml.PNG" style="width: 541px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M65Z.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/143475i33F020D749C3D9AA/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M65Z.png" alt="0683p000009M65Z.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;And my tmap :&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tmap.PNG" style="width: 539px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M65e.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144172iE0689930F4F51FB2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M65e.png" alt="0683p000009M65e.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;The result of this job is :&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Result.PNG" style="width: 470px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M656.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153423i31DA0D3E2E70754A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M656.png" alt="0683p000009M656.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;FONT&gt;These are the results I want to put in the graphQl api.&lt;/FONT&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;FONT&gt;So i call an API, this API sends me a xml. With extractXML I take all the datas and they go in my tmap.&lt;BR /&gt;Now I have to put these datas in the tRestClient with a query like : '{"query": "mutation { saveForm(formInput: { id: '+ row3.WTIERS +', ....}) {id,wasteDetails{name}} }" }'&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt; 
&lt;P&gt;&lt;FONT&gt;To do that I have to use a twritejson ?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 13:15:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314308#M85084</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-02T13:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314309#M85085</link>
      <description>&lt;P&gt;First, connect your tRestClient to your tMap. You should see a body and a string column in your tMap output table. In your tMap output table's string column value expression, use this code....&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;"{\"query\": \"mutation\", { \"id\": \""+ row3.WTIERS +"\"}}"&lt;/PRE&gt; 
&lt;P&gt;......note the above code is abridged since the code you supplied was not complete. Note the "\" characters used to escape the quotes. You need to keep this in mind with Java String manipulation.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Once you have done this, you just need to make sure the tRestClient is configured with the correct endpoint and details.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;You may want to test the JSON being produce by replacing the tRestClient with a tLogRow.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 14:22:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314309#M85085</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-02T14:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314310#M85086</link>
      <description>&lt;P&gt;I&lt;FONT&gt;t works, thank you very much.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2019 14:38:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314310#M85086</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-02T14:38:44Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314311#M85087</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I am facing the similar issue while performing the mutation operation&lt;/P&gt; 
&lt;P&gt;I was able to Query and receive the response as well&lt;/P&gt; 
&lt;P&gt;But while performing the mutation talend is throwing an error like below&lt;/P&gt; 
&lt;P&gt;Please find my Job Screenshots attached.....&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="error500settings.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7v9.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135120iB9503DF86297055D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7v9.png" alt="0683p000009M7v9.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="job.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7vE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/137279iF3A736608ED6151C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7vE.png" alt="0683p000009M7vE.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="error.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7vJ.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/148364i83C8F935EF4437D2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7vJ.png" alt="0683p000009M7vJ.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="error1.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7dc.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135070iA8FF361486E16394/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7dc.png" alt="0683p000009M7dc.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="trestclientadvancedsettings.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7vT.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/148791i42103F17AE8E7149/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7vT.png" alt="0683p000009M7vT.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="trestclientsettings.PNG" style="width: 400px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7il.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/153486i815C7C8FDEE12A19/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7il.png" alt="0683p000009M7il.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2019 19:47:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314311#M85087</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-25T19:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314312#M85088</link>
      <description>&lt;P&gt;It seems to suggest an unexpected character has been used in the JSON you are sending. Can you post the JSON here?&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 11:46:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314312#M85088</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-28T11:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314313#M85089</link>
      <description>&lt;P&gt;mutation { importEntities: {name: "ABC World"} {id} }&lt;/P&gt;&lt;P&gt;This is the JSON I am trying to POST&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Archanalg&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 17:13:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314313#M85089</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-28T17:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314314#M85090</link>
      <description>&lt;P&gt;Hi rhall,&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;mutation{ upsertEntity(entity: { name:"ABC World"}) {id}}&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;when I try to post the same JSON in GraphQL Playground Link I am able to receive response,&lt;/P&gt;
&lt;P&gt;Please let me know is there any specific component designed to handle GraphQL calls.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance,&lt;/P&gt;
&lt;P&gt;Archanalg&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 17:22:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314314#M85090</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-28T17:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314315#M85091</link>
      <description>&lt;P&gt;This is bad JSON. It does not fit JSON standards. Test your JSON out &lt;A href="https://jsonformatter.curiousconcept.com/" target="_self" rel="nofollow noopener noreferrer"&gt;here&lt;/A&gt; before posting it. It will help you identify what is wrong with it&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2019 17:29:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314315#M85091</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-28T17:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314316#M85092</link>
      <description>&lt;P&gt;Hello rhall,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;sorry for my bad JSON , actually that is my GraphQL mutation statement.&lt;/P&gt;
&lt;P&gt;Could you please let me know how to pass it to graphql server through trestclient.&lt;/P&gt;
&lt;P&gt;or if there is any alternative way.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 05:23:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314316#M85092</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-29T05:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314317#M85093</link>
      <description>&lt;P&gt;Your tRestClient has a string and a body input schema. The body column is for XML (document) and the string is for JSON. Send the JSON to the string column using the component before to set it. When formatting the JSON you will need to make sure you handle all of the formatting. Therefore you will need to build it using Java escape characters to escape the quotes.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 09:01:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314317#M85093</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-29T09:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314318#M85094</link>
      <description>&lt;P&gt;I have taken your advice and quoted all the strings as shown in the attached pictures,&lt;/P&gt; 
&lt;P&gt;still getting "post body missing error".&lt;/P&gt; 
&lt;P&gt;Request you to help us out as it is priority issue to us and we are able to find very less posts on GraphQL - Talend combination.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="job.PNG" style="width: 628px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7x5.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/140397iBAC46FF22F3317D2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7x5.png" alt="0683p000009M7x5.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Mutation preparation.PNG" style="width: 801px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7xA.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/143059iD362560D35E919FF/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7xA.png" alt="0683p000009M7xA.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="restclientsetting.PNG" style="width: 715px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7xF.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130209iFC5D3C70359FDC1D/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7xF.png" alt="0683p000009M7xF.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="restclientadvancedsettings.PNG" style="width: 937px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7t0.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/149301i53656E2CEE22D895/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7t0.png" alt="0683p000009M7t0.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="errorlog.png" style="width: 851px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7Vs.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/144151i05F722DE7C6B3362/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7Vs.png" alt="0683p000009M7Vs.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 11:01:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314318#M85094</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-29T11:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314319#M85095</link>
      <description>&lt;P&gt;How is your tFixedFlowOutput configured? Your JSON is still not correct. You are missing a few colons.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 11:21:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314319#M85095</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-29T11:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314320#M85096</link>
      <description>&lt;P&gt;the below is mutation statement and i am storing it in a context variable jsonString which is passed to fixedflow&lt;/P&gt; 
&lt;P&gt;context.jsonString = "\"mutation\"{ \"upsertEntity\"(\"entity\" : { \"name\" : \"ABC1 entity \" }) {\"id\",\"name\"}}";&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;please let me know how to correct the JSON format.I have minimum knowledge on JSON formation.&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fixedflow_string_passing_asJSON.PNG" style="width: 758px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009M7rw.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/140126i43E3BC7FDD7A5D91/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009M7rw.png" alt="0683p000009M7rw.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 11:29:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314320#M85096</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-29T11:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314321#M85097</link>
      <description>&lt;P&gt;Hi rhall,&lt;/P&gt;
&lt;P&gt;please help as I stuck here still.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance,&lt;/P&gt;
&lt;P&gt;archanalg&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 06:06:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314321#M85097</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-31T06:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314322#M85098</link>
      <description>&lt;P&gt;Before creating it as a Java String, take the JSON you have created and test it &lt;A href="https://jsonformatter.curiousconcept.com/" target="_self" rel="nofollow noopener noreferrer"&gt;here&lt;/A&gt;. This will tell you where it is incorrect. I can see from glancing at it that you are missing semicolons (&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt;. For example, your current code is this...&lt;/P&gt; 
&lt;PRE&gt;"\"mutation\"{ \"upsertEntity\"(\"entity\" : { \"name\" : \"ABC1 entity \" }) {\"id\",\"name\"}}"&lt;/PRE&gt; 
&lt;P&gt;It looks like ":" is missing after "mutation" and "upsertEntry". I'm also not sure that what you are trying to do with the "(" and ")" characters. Can you give a bit more detail on what needs to be provided to the service? Is there any API documentation?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 09:53:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314322#M85098</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-31T09:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314323#M85099</link>
      <description>&lt;P&gt;Hello rhall ,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Im stuck with passing a query to my tRESTClient&amp;nbsp; &amp;nbsp;using GraphQl.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is working on Postman and im getting the right informations but using talend i couldn't pass the query .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyHI"&gt;ql.PNG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyAn"&gt;ql1.PNG&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyIj"&gt;ql2.PNG&lt;/A&gt;</description>
      <pubDate>Tue, 07 Apr 2020 14:49:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314323#M85099</guid>
      <dc:creator>kakooo16</dc:creator>
      <dc:date>2020-04-07T14:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314324#M85100</link>
      <description>&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there anybody who can help .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2020 14:15:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314324#M85100</guid>
      <dc:creator>kakooo16</dc:creator>
      <dc:date>2020-04-08T14:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: GraphQl in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314325#M85101</link>
      <description>&lt;P&gt;Sorry&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LR09AAG"&gt;@kakooo16&lt;/A&gt;, I have not been on the Community for a while. From what you have said, it looks like you are not sending your JSON query to the string column of the input schema. You will also need to set the tRestClient http method to POST&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 00:26:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/GraphQl-in-Talend/m-p/2314325#M85101</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-22T00:26:24Z</dc:date>
    </item>
  </channel>
</rss>

