/// <summary> /// Filter by the end date of the media. /// </summary> public GraphQueryArgument <FuzzyDateInt> EndDateArgument(FuzzyDate value) { return(EndDate.GetQueryArgumentAndSetValue(value.GetFuzzyDateInt())); }
/// <summary> /// Filter by the start date of the media where start date is lesser than the given value. /// </summary> public GraphQueryArgument <FuzzyDateInt> StartDateLesserThanArgument(FuzzyDate value) { return(StartDateLesser.GetQueryArgumentAndSetValue(value.GetFuzzyDateInt())); }