RelatedFeatureQueryResult

Contains the features that have been returned from a related tables query. Instances of this class represents the result of related queries. A prerequisite for querying related features is that all the participating tables must be part of a map, as either feature layers or non-spatial tables. An array of instances are returned, one per related table containing features related to the queried feature. This class has methods that can be used to iterate over the collection of related features.

Since

200.1.0

Properties

Link copied to clipboard

The feature for which related features were queried.

Link copied to clipboard

True if the query resulted in a larger number of features than what the transfer limit supports. Many ArcGIS services only return up to 1000 features even if the query matched more features. When that happens for the query that produces this result, this property is true.

Link copied to clipboard

The related table for this query result. There can be more than one instance of the same table or layer on the map with different scale level visibility, definition expression, and so on. All such instances share the same RelationshipInfo with the table the query operation is called on. In such cases, results from all such instances are returned, and the relatedTable property is used to distinguish between them.

Link copied to clipboard

Relationship info. If more than one related table were queried, multiple results are returned, each with its RelationshipInfo.

Inherited properties

Link copied to clipboard
open override val fields: List<Field>

The fields of the feature set.

Link copied to clipboard
open override val geometryType: GeometryType

The geometry type stored in this feature set.

Link copied to clipboard

The spatial reference of the feature set.

Inherited functions

Link copied to clipboard
open fun forEach(p0: Consumer<in Feature>)
Link copied to clipboard
open operator override fun iterator(): Iterator<Feature>
Link copied to clipboard