@@ -141,11 +141,6 @@ interface CmsParent {
141141 rootPage : Page !
142142 typeaheadSearchCmsContent (name : String ): [CmsContent ! ]!
143143 pre_schedule_content_html : String
144- """
145- Given a Liquid text string and a notification event, renders the Liquid to HTML using the
146- current domain's CMS context as if it were the content for that notification type.
147- """
148- preview_notifier_liquid (eventKey : String ! , content : String ! ): String !
149144}
150145
151146type CmsPartial {
@@ -191,11 +186,6 @@ type Convention {
191186 rootPage : Page !
192187 typeaheadSearchCmsContent (name : String ): [CmsContent ! ]!
193188 pre_schedule_content_html : String
194- """
195- Given a Liquid text string and a notification event, renders the Liquid to HTML using the
196- current domain's CMS context as if it were the content for that notification type.
197- """
198- preview_notifier_liquid (eventKey : String ! , content : String ! ): String !
199189 name : String
200190 canceled : Boolean !
201191 clickwrap_agreement : String
@@ -221,6 +211,16 @@ type Convention {
221211 timezone_name : String
222212 accepting_proposals : Boolean !
223213 rooms : [Room ! ]!
214+ """
215+ Given a Liquid text string and a notification event, renders the Liquid to HTML using the
216+ current domain's CMS context as if it were the content for that notification type.
217+ """
218+ preview_notifier_liquid (
219+ """
220+ The key of the notification event to use for generating the preview.
221+ """
222+ eventKey : String ! , content : String !
223+ ): String !
224224 bio_eligible_user_con_profiles : [UserConProfile ! ]!
225225 catch_all_staff_position : StaffPosition
226226 cms_content_groups : [CmsContentGroup ! ]!
@@ -239,7 +239,12 @@ type Convention {
239239 Finds an event proposal by ID in this convention. If there is no event proposal with that ID
240240 in this convention, errors out.
241241 """
242- event_proposal (id : ID ! ): EventProposal !
242+ event_proposal (
243+ """
244+ The ID of the event proposal to find.
245+ """
246+ id : ID !
247+ ): EventProposal !
243248 event_proposals_paginated (page : Int , per_page : Int , filters : EventProposalFiltersInput , sort : [SortInput ! ]): EventProposalsPagination !
244249 form (id : ID ! ): Form !
245250 forms : [Form ! ]!
0 commit comments