hashmapinc / hashmapinc/Drillflow
Query for trajectory with objectGrowing = true returns all trajectories for the wellbore
- Dominant language
- Java
- Stars
- 21
- Forks
- 13
- PR merge metrics
- No merged PRs in 30d
Description
executing the following query:
```
trajectory
true
]]>
returnElements=id-only
```
using the following context:
```def wellSuffix = "Energistics-well-0001"
def wellName = 'Energistics Certification Well 1'
def wellbore1W1Suffix = "Energistics-w1-wellbore-0001"
def wellboreName = 'Energistics Certification Wellbore 1'
def trajSuffix = 'Energistics-w1-wb1-trajectory-0001'
def trajName = 'Energistics Certification Well 1 Wellbore 1 Trajectory 1'
def trajTwoSuffix = 'Energistics-w1-wb1-trajectory-0002'
def trajTwoName = 'Energistics Certification Well 1 Wellbore 1 Trajectory 2'
testRunner.testCase.setPropertyValue("wellUid", wellSuffix)
testRunner.testCase.setPropertyValue("wellName", wellName)
testRunner.testCase.setPropertyValue("wellboreW1Uid", wellbore1W1Suffix)
testRunner.testCase.setPropertyValue("wellboreName", wellboreName)
testRunner.testCase.setPropertyValue("trajUid", trajSuffix)
testRunner.testCase.setPropertyValue("trajName", trajName)
testRunner.testCase.setPropertyValue("trajTwoUid", trajTwoSuffix)
testRunner.testCase.setPropertyValue("trajTwoName", trajTwoName)
```
Should only return trajectories that have had an update within a certain time limit specified by the server, but it returns all trajectories for a wellbore, growing or not.
May not be supported by DrillOps. Needs to be validated against their API.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.