readQuery$findPredefinedQuestsByTargetWithRepeatDate method

Query$findPredefinedQuestsByTargetWithRepeatDate? readQuery$findPredefinedQuestsByTargetWithRepeatDate({
  1. required Variables$Query$findPredefinedQuestsByTargetWithRepeatDate variables,
  2. bool optimistic = true,
})

Implementation

Query$findPredefinedQuestsByTargetWithRepeatDate?
    readQuery$findPredefinedQuestsByTargetWithRepeatDate({
  required Variables$Query$findPredefinedQuestsByTargetWithRepeatDate
      variables,
  bool optimistic = true,
}) {
  final result = this.readQuery(
    graphql.Request(
      operation: graphql.Operation(
          document:
              documentNodeQueryfindPredefinedQuestsByTargetWithRepeatDate),
      variables: variables.toJson(),
    ),
    optimistic: optimistic,
  );
  return result == null
      ? null
      : Query$findPredefinedQuestsByTargetWithRepeatDate.fromJson(result);
}