loadRelatedList<T> method
Implementation
Future<List<T>> loadRelatedList<T>({
required String id,
required String relatedType,
required bool isNullable,
required String field,
required bool isJoinType,
Map<String, Object?>? where,
String? queryName,
}) =>
neo4JClient().loadRelatedList<T>(
entityId: id,
fieldName: field,
relatedType: relatedType,
entityName: this.entityName,
fixedWhere: where,
isJoinType: isJoinType,
);