fromGraphQLListNullableOperationIdToDartListNullableOperationId function
Implementation
List<OperationId>?
fromGraphQLListNullableOperationIdToDartListNullableOperationId(
List<Object?>? v,
) => v
?.map((e) => fromGraphQLOperationIdToDartOperationId(e as String))
.toList();