All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.lightspark.sdk.wallet.graphql.CurrentWallet.kt Maven / Gradle / Ivy

The newest version!
package com.lightspark.sdk.wallet.graphql

import com.lightspark.sdk.wallet.model.Wallet

const val CurrentWalletQuery = """
query CurrentWallet {
    current_wallet {
        ...WalletFragment
    }
}

${Wallet.FRAGMENT}
"""

const val CurrentWalletSubscription = """
subscription CurrentWallet {
    current_wallet {
        ...WalletFragment
    }
}

${Wallet.FRAGMENT}
"""




© 2015 - 2024 Weber Informatics LLC | Privacy Policy