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.
|
- extend type Query {
- visitorLogs(
- userName:String
- userId:ID
- visitorId:ID
- businessType:Int
- startDate:Date
- endDate:Date
- limit:Int
- ): [VisitorLog!]
-
- visitorLog(id:ID!): VisitorLog
- }
-
-
- type VisitorLog {
- id: ID
- businessType: Int
- method: String
- visitorId: ID
- userId: ID
- userName: String
- param: String
- jsonResult: String
- operateTime: String
- }
|