78. Sorgu: "Fields" i "externalKey" ile bul

“Tarla” kaydı sırasında üçüncü tarafın eklediği externalKey ile “Tarla”ları bulun.

SEÇENEK 1 getFields sorgusunu kullanarak

query FindFieldsByExternalKeyOption1 {
  getFields(filter: {
    fieldExternalKey: "<third_party_identificator>"
  }) {
    toplamSayı
    fields {
      uuid
      isim
      externalKey
    }
  }
}

SEÇENEK 2 getFarms sorgusunu kullanarak

query FingFieldsByExternalKeyOption2 {
  getFarms {
    fields(externalKeys: ["<third_party_identificator>"]) {
      uuid
      isim
      externalKey
    }
  }
}

Last updated

Was this helpful?