文件名称:graphql-example
文件大小:1.36MB
文件格式:ZIP
更新时间:2024-05-31 11:28:23
JavaScript
咨询公司 查询 query getSingleCourse($courseId: Int!) { course(id: $courseId) { title url } } query getCourses($topic: String) { courses(topic: $topic) { topic author title } } 查询片段 query getCoursesFragment($id: Int!, $id2: Int!) { course1: course(id: $id) { ...fields } course2: course(id: $id2) { ...fields } } 变异(更新或保存) mutation updateCourseTopic($idT: Int!,