数字人管理平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
439 B

  1. extend type Query {
  2. visitorLogs(
  3. userName:String
  4. userId:ID
  5. visitorId:ID
  6. businessType:Int
  7. startDate:Date
  8. endDate:Date
  9. limit:Int
  10. ): [VisitorLog!]
  11. visitorLog(id:ID!): VisitorLog
  12. }
  13. type VisitorLog {
  14. id: ID
  15. businessType: Int
  16. method: String
  17. visitorId: ID
  18. userId: ID
  19. userName: String
  20. param: String
  21. jsonResult: String
  22. operateTime: String
  23. }