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