/// <summary>
 /// Filter by the end date of the media where end date is like the given fuzzy date in string form as a wildcard search
 /// e.g, new FuzzyDate(2017,10,null) will be "201710%".
 /// </summary>
 public GraphQueryArgument <string> EndDateLikeArgument(FuzzyDate value)
 {
     return(EndDateLike.GetQueryArgumentAndSetValue(value.GetFuzzyDateWildcardString()));
 }