<?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: Unable to insert,update,delete from GraphQL in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Unable-to-insert-update-delete-from-GraphQL/m-p/4389608#M6752</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I have used Id as primary key.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 31 Jan 2025 09:35:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-01-31T09:35:53Z</dc:date>
    <item>
      <title>Unable to insert,update,delete from GraphQL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Unable-to-insert-update-delete-from-GraphQL/m-p/4389442#M6744</link>
      <description>&lt;P&gt;I am using Graph Ql, I performing the different CRUD operation. When I am doing single update,insert and delete its working. But when I am trying with multiple rows I am not able to do. Did any one tried it ?&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="Sakshi_Khojare_0-1738308905855.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1233079i01CDF321D800083E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Sakshi_Khojare_0-1738308905855.png" alt="Sakshi_Khojare_0-1738308905855.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2025 07:38:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Unable-to-insert-update-delete-from-GraphQL/m-p/4389442#M6744</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-31T07:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to insert,update,delete from GraphQL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Unable-to-insert-update-delete-from-GraphQL/m-p/4389497#M6748</link>
      <description>&lt;P&gt;Hello @Anonymous&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;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You cannot use the automatically generated GraphQL mutations in Microsoft Fabric to perform inserts, updates, or deletes on multiple rows in a single call because each of those mutations requires a primary key value for one specific row.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;A href="https://www.mssqltips.com/sqlservertip/8113/crud-operations-in-microsoft-fabric-using-graphql-api-mutations" target="_blank"&gt;https://www.mssqltips.com/sqlservertip/8113/crud-operations-in-microsoft-fabric-using-graphql-api-mutations&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please accept this solution if this is helpful&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2025 08:32:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Unable-to-insert-update-delete-from-GraphQL/m-p/4389497#M6748</guid>
      <dc:creator>nilendraFabric</dc:creator>
      <dc:date>2025-01-31T08:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to insert,update,delete from GraphQL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Unable-to-insert-update-delete-from-GraphQL/m-p/4389608#M6752</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I have used Id as primary key.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2025 09:35:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Unable-to-insert-update-delete-from-GraphQL/m-p/4389608#M6752</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-31T09:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to insert,update,delete from GraphQL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Unable-to-insert-update-delete-from-GraphQL/m-p/4392429#M6862</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&amp;nbsp;&lt;BR /&gt;Thank you for being part of the Microsoft Fabric Community.&lt;BR /&gt;If your fabric graphql api allows array-based inserts, you can modify the mutation to accept multiple records:&lt;/P&gt;
&lt;DIV&gt;****************************************************************&lt;/DIV&gt;
&lt;DIV&gt;mutation CreateEmployees($items: [EmpInput!]!) {&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; createempinfo(items: $items) {&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Id&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Name&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Address&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; }&lt;/DIV&gt;
&lt;DIV&gt;}&lt;/DIV&gt;
&lt;P&gt;******************************************************************&lt;/P&gt;
&lt;P&gt;JSON&lt;/P&gt;
&lt;P&gt;******************************************************************&lt;/P&gt;
&lt;P&gt;{&lt;BR /&gt;"query": "mutation CreateEmployees($items: [EmpInput!]!) { createempinfo(items: $items) { Id Name Address } }",&lt;BR /&gt;"variables": {&lt;BR /&gt;"items": [&lt;BR /&gt;{"Address": "Pune", "Id": 1000, "Name": "Then"},&lt;BR /&gt;{"Address": "Paratwada", "Id": 1001, "Name": "Chetan"}&lt;BR /&gt;]&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;******************************************************************&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the above information helps you, please give us a Kudos and marked the reply Accept as a Solution.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Cheri Srikanth&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2025 12:13:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Unable-to-insert-update-delete-from-GraphQL/m-p/4392429#M6862</guid>
      <dc:creator>v-csrikanth</dc:creator>
      <dc:date>2025-02-03T12:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to insert,update,delete from GraphQL</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/Unable-to-insert-update-delete-from-GraphQL/m-p/4405120#M7130</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&amp;nbsp;&lt;BR /&gt;We haven't heard from you since last response and just wanted to check whether the solution provided has worked for you. If yes, please accept as solution to help others benefit.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2025 12:34:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/Unable-to-insert-update-delete-from-GraphQL/m-p/4405120#M7130</guid>
      <dc:creator>v-csrikanth</dc:creator>
      <dc:date>2025-02-11T12:34:34Z</dc:date>
    </item>
  </channel>
</rss>

