74. म्यूटेशन: "Equation" सत्यापित करें
mutation VerifyEquation {
verifyEquation(input: {
dataVariables: [{
variable: "yield_vol"
sampleValue: 1.1
}, {
variable: "prod"
sampleValue: 2.2
}]
equationAsText: """calculated = yield_vol/prod + 3.5
if calculated >= 30:
result = 35
elif calculated >= 20 and calculated < 30:
result = 25
else:
result = 15
"""
equationResultVariable: "result"
}) {
executed
result
errorMessage
}
}Previous73. क्वेरी: चयनित बफ़र के साथ ग्रिडेड डेटा प्राप्त करेंNext75. म्यूटेशन: असिंक्रोनस रूप से "EquationMap" जनरेट करें
Last updated
Was this helpful?