We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 78a8e10 + d34a112 commit c1749bfCopy full SHA for c1749bf
1 file changed
Optimizely.Graph.Source.Sdk/Optimizely.Graph.Source.Sdk/GraphSourceClient.cs
@@ -104,6 +104,15 @@ public async Task<string> DeleteContentAsync()
104
return await repository.DeleteContentAsync();
105
}
106
107
+ /// <summary>
108
+ /// Removes individual content items previously stored by source.
109
+ /// </summary>
110
+ /// <returns></returns>
111
+ public async Task<string> DeleteContentItemsAsync(string language, params string[] ids)
112
+ {
113
+ return await repository.DeleteContentItemsAsync(language, ids);
114
+ }
115
+
116
#region Private
117
/// <summary>
118
/// Creates the HttpClientFactory for the REST services.
0 commit comments