graphql-let icon indicating copy to clipboard operation
graphql-let copied to clipboard

fragment query not response data

Open rainleee opened this issue 1 year ago • 0 comments

version: v0.18.6

problem: I use fragments ts file generating it


query matchingStandByList($input: GetMatchingLvtsInput!) {
  getMatchingLvts(input: $input) {
   ...MathcingListCommon
    tag {
      tagId 
      tagType 
      tagName 
    }
  }
}

fragment MathcingListCommon on MatchingLvt {
  id 
  possibleAt 
  type 
  lectureVideoTutoring {
    lectureVtId 
    student {
      studentUserId 
      studentName 
    }
    lectureVtMemo 
  }
  status 
  tag {
    tagId 
  }
}

image

There are values on the network. However, there is no custom-hooked response data.

tag data only

image

I tried to use Fragment for both query and subscription. A valid data exists in the subscription

rainleee avatar Jul 28 '22 01:07 rainleee