/// <summary>
 /// Initializes a new instance of the <see cref="GraphClient"/> class.
 /// </summary>
 /// <param name="token">A valid JSON Web Token (JWT).</param>
 public GraphClient(string token)
 {
     _comm  = new Communication();
     _token = token;
 }