getUserActionsQuery top-level constant

String const getUserActionsQuery

Implementation

const String getUserActionsQuery = '''
query  getUserActions{
  fetchUserNavigationActions {
    primary {
      title
      favourite
      onTapRoute
      icon {
        id:ID
        title:Title
        description:Description
        url:URL
        linkType:LinkType
        thumbnail:Thumbnail
      }
      nested {
        title
        onTapRoute
      }
    }
    secondary {
      title
      favourite
			onTapRoute
      icon{
        id:ID
        title:Title
        description:Description
        url:URL
        linkType:LinkType
        thumbnail:Thumbnail
      }
      nested {
        title
        onTapRoute
      }
    }
  }
}
''';