fromGraphQLListOperationsCursorToDartListOperationsCursor function
Implementation
List<OperationsCursor>
fromGraphQLListOperationsCursorToDartListOperationsCursor(List<Object?> v) => v
.map((e) => fromGraphQLOperationsCursorToDartOperationsCursor(e as String))
.toList();