Select to view content in your preferred language

Create an attribute rule to delete the association

762
3
03-01-2022 10:48 PM
BlazeSi
New Contributor II

Hi,

I am trying to develop an attribute rule to delete the association between a point feature and a line feature when the point does not intersect with the line, but I have reviewed the page - Attribute rule dictionary keywords and haven't found this capacity of Arcade. Does it have another way to do it by arcade?

Regards.

0 Kudos
3 Replies
Mohamed_Gamal
New Contributor II

Dear, BlazeSi

Did you find a solution to this problem?

0 Kudos
BlazeSi
New Contributor II

Yes

 

return {
    'edit': [{
        'className': '^UN_Association',
          'deletes': [{
            'objectID': 22
        }]
    }]
} 

 

Mohamed_Gamal
New Contributor II

Thanks

 

0 Kudos