getCurrentUser method Null safety

String getCurrentUser()

Returns the graphQL query to check the current user.

Implementation

static String getCurrentUser() {
  String ret = '''
query GetCurrentUser{
viewer{
  sessionToken
}
}
''';
  return ret;
}