63. म्यूटेशन: ऑर्गनाइज़ेशन सेव करें

"Organization" जोड़ने या संपादित करने के लिए म्यूटेशन। जो "User" saveOrganization अनुरोध भेजेगा वह "Organization" का मालिक होगा।

mutation saveOrganizationSample {
  saveOrganization(
    input: {
      name: "Organization name"
      surname: "Owner surname"
      givenName: "Owner given name"
      email: "[email protected]"
      phone: "+0"
    }
  ) {
    uuid
    name
    उपनाम
    प्रथमनाम
    email
    फोन
    निर्माण_तिथि
    updatedDate
  }
}

मौजूदा "Organization" को संपादित करने के लिए, अनुरोध में uuid एट्रिब्यूट जोड़ें।

Last updated

Was this helpful?