Created
May 24, 2019 13:46
-
-
Save MattDionis/4e6751d83d024b58d7674490cb7f7a8f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gql from "graphql-tag"; | |
const UPDATE_APP_BAR_COLOR_SETTING_MUTATION = gql` | |
mutation updateAppBarColorSetting($setting: String!) { | |
updateAppBarColorSetting(setting: $setting) @client { | |
setting @client | |
} | |
} | |
`; | |
export default UPDATE_APP_BAR_COLOR_SETTING_MUTATION; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment