Skip to content

Commit

Permalink
visitor
Browse files Browse the repository at this point in the history
  • Loading branch information
batorshih committed Feb 22, 2021
1 parent 1d78cd4 commit f9d08a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mutation widgetsMessengerConnect($brandCode: String!, $email: String, $phone: String,$isUser:Boolean, $data: JSON,$visitorId:String){
widgetsMessengerConnect (brandCode: $brandCode, email: $email, phone: $phone,isUser:$isUser, data: $data,visitorId:$visitorId){
mutation widgetsMessengerConnect($brandCode: String!, $email: String, $phone: String,$isUser:Boolean, $data: JSON){
widgetsMessengerConnect (brandCode: $brandCode, email: $email, phone: $phone,isUser:$isUser, data: $data){
integrationId
uiOptions
languageCode
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void run(boolean isCheckRequired, boolean isUser, boolean hasData, String
.email(email)
.phone(phone)
.isUser(isUser)
.visitorId(imei)
// .visitorId(imei)
.data(new Json(customDataMap))
.build();
Rx3Apollo.from(erxesRequest.apolloClient
Expand Down

0 comments on commit f9d08a6

Please sign in to comment.