vishnugpl
vishnugpl

Reputation: 93

Shopify mobile-buy-sdk-android migration to 4.0.0 from 3.2.3

Currently, I am using mobile buy SDK version 3.2.3 and my code is:

QueryGraphCall graphCall = graphClient.queryGraph(graphqlQuery.getAllOrders(size, cursor));
    graphCall.enqueue(new GraphCall.Callback<Storefront.QueryRoot>() {
        @Override
        public void onResponse(@NonNull GraphResponse<Storefront.QueryRoot> response) {
        // Success response
        }
        @Override
        public void onFailure(@NonNull GraphError error) {
        //Failure Response
        }
    });

Updated my shopify version to 4.0.0 and now it shows can not resolve symbol GraphCall.Callback I am new to shopify, Can anybody help me to this problem

Thanks in advance

Upvotes: 1

Views: 463

Answers (0)

Related Questions