diff --git a/Storage/Storage/LCQuery.cs b/Storage/Storage/LCQuery.cs index c9396f74..b04d4574 100644 --- a/Storage/Storage/LCQuery.cs +++ b/Storage/Storage/LCQuery.cs @@ -351,7 +351,14 @@ public async Task Get(string objectId) { throw new ArgumentNullException(nameof(objectId)); } string path = $"classes/{ClassName}/{objectId}"; - Dictionary response = await LCApplication.HttpClient.Get>(path); + Dictionary queryParams = null; + string includes = Condition.BuildIncludes(); + if (!string.IsNullOrEmpty(includes)) { + queryParams = new Dictionary { + { "include", includes } + }; + } + Dictionary response = await LCApplication.HttpClient.Get>(path, queryParams: queryParams); return DecodeLCObject(response); }