• This project
    • Loading...
  • Sign in

万朱浩 / Venue-Ops

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Venue-Ops
  • MediaCrawler
  • media_platform
  • kuaishou
  • graphql
  • vision_profile.graphql
  • Completed fine-tuning for several models and prepared the foundational component… · 14d8ac6e ...
    14d8ac6e Browse Directory
    …s for an upcoming refactor.
    戒酒的李白 authored 2025-08-03 23:08:30 +0800
vision_profile.graphql 440 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
query visionProfile($userId: String) {
  visionProfile(userId: $userId) {
    result
    hostName
    userProfile {
      ownerCount {
        fan
        photo
        follow
        photo_public
        __typename
      }
      profile {
        gender
        user_name
        user_id
        headurl
        user_text
        user_profile_bg_url
        __typename
      }
      isFollowing
      __typename
    }
    __typename
  }
}