Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

skava / @skava-features/header   js

Repository URL to install this package:

Version: 0.1.7 

/ dist / src / state / session / queries / GetSecurityQuestionsQuery.graphql.js

import { gql } from 'apollo-boost';
export default gql `
  mutation GetSecurityQuestions($input: String!) {
    getSecurityQuestions(emailId: $input) {
      type
      properties {
        state {
          statuscode
          starttime
          status
        }
        userinfo {
          userid
          email
          username
          lastname
          country
          userphoto
          firstname
          preferences {
            label
            value
          }
          gender
          city
          phonenumber
          state
          dob
          usertimezone
          additionalinfo {
            label
            value
          }
          securityanswer
          securityquestion
        }
      }
    }
  }
`;
//# sourceMappingURL=GetSecurityQuestionsQuery.graphql.js.map