Added meilisearch #89
| @ -1,48 +0,0 @@ | ||||
| query getContents($language_code: String) { | ||||
|   contents(pagination: { limit: -1 }) { | ||||
|     data { | ||||
|       id | ||||
|       attributes { | ||||
|         slug | ||||
|         translations(pagination: { limit: -1 }) { | ||||
|           pre_title | ||||
|           title | ||||
|           subtitle | ||||
|           language { | ||||
|             data { | ||||
|               attributes { | ||||
|                 code | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|         categories(pagination: { limit: -1 }) { | ||||
|           data { | ||||
|             id | ||||
|             attributes { | ||||
|               name | ||||
|               short | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|         type { | ||||
|           data { | ||||
|             attributes { | ||||
|               slug | ||||
|               titles(filters: { language: { code: { eq: $language_code } } }) { | ||||
|                 title | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|         thumbnail { | ||||
|           data { | ||||
|             attributes { | ||||
|               ...uploadImage | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| } | ||||
| @ -1,107 +0,0 @@ | ||||
| query getLibraryItemsPreview($language_code: String) { | ||||
|   libraryItems(pagination: { limit: -1 }) { | ||||
|     data { | ||||
|       id | ||||
|       attributes { | ||||
|         title | ||||
|         subtitle | ||||
|         slug | ||||
|         root_item | ||||
|         primary | ||||
|         thumbnail { | ||||
|           data { | ||||
|             attributes { | ||||
|               ...uploadImage | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|         release_date { | ||||
|           ...datePicker | ||||
|         } | ||||
|         price { | ||||
|           ...pricePicker | ||||
|         } | ||||
|         categories(pagination: { limit: -1 }) { | ||||
|           data { | ||||
|             id | ||||
|             attributes { | ||||
|               name | ||||
|               short | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|         metadata { | ||||
|           __typename | ||||
|           ... on ComponentMetadataBooks { | ||||
|             subtype { | ||||
|               data { | ||||
|                 attributes { | ||||
|                   slug | ||||
|                   titles(filters: { language: { code: { eq: $language_code } } }) { | ||||
|                     title | ||||
|                   } | ||||
|                 } | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|           ... on ComponentMetadataGame { | ||||
|             platforms(pagination: { limit: -1 }) { | ||||
|               data { | ||||
|                 id | ||||
|                 attributes { | ||||
|                   short | ||||
|                 } | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|           ... on ComponentMetadataVideo { | ||||
|             subtype { | ||||
|               data { | ||||
|                 attributes { | ||||
|                   slug | ||||
|                   titles(filters: { language: { code: { eq: $language_code } } }) { | ||||
|                     title | ||||
|                   } | ||||
|                 } | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|           ... on ComponentMetadataAudio { | ||||
|             subtype { | ||||
|               data { | ||||
|                 attributes { | ||||
|                   slug | ||||
|                   titles(filters: { language: { code: { eq: $language_code } } }) { | ||||
|                     title | ||||
|                   } | ||||
|                 } | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|           ... on ComponentMetadataGroup { | ||||
|             subtype { | ||||
|               data { | ||||
|                 attributes { | ||||
|                   slug | ||||
|                   titles(filters: { language: { code: { eq: $language_code } } }) { | ||||
|                     title | ||||
|                   } | ||||
|                 } | ||||
|               } | ||||
|             } | ||||
|             subitems_type { | ||||
|               data { | ||||
|                 attributes { | ||||
|                   slug | ||||
|                   titles(filters: { language: { code: { eq: $language_code } } }) { | ||||
|                     title | ||||
|                   } | ||||
|                 } | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| } | ||||
| @ -1,46 +0,0 @@ | ||||
| query getPostsPreview { | ||||
|   posts(filters: { hidden: { eq: false } }) { | ||||
|     data { | ||||
|       id | ||||
|       attributes { | ||||
|         slug | ||||
|         date { | ||||
|           ...datePicker | ||||
|         } | ||||
|         categories(pagination: { limit: -1 }) { | ||||
|           data { | ||||
|             id | ||||
|             attributes { | ||||
|               short | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|         thumbnail { | ||||
|           data { | ||||
|             attributes { | ||||
|               ...uploadImage | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|         translations(pagination: { limit: -1 }) { | ||||
|           language { | ||||
|             data { | ||||
|               attributes { | ||||
|                 code | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|           title | ||||
|           excerpt | ||||
|           thumbnail { | ||||
|             data { | ||||
|               attributes { | ||||
|                 ...uploadImage | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| } | ||||
| @ -1,33 +0,0 @@ | ||||
| query getVideosPreview { | ||||
|   videos(pagination: { limit: -1 }) { | ||||
|     data { | ||||
|       id | ||||
|       attributes { | ||||
|         uid | ||||
|         title | ||||
|         views | ||||
|         duration | ||||
|         gone | ||||
|         categories(pagination: { limit: -1 }) { | ||||
|           data { | ||||
|             id | ||||
|             attributes { | ||||
|               short | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|         published_date { | ||||
|           ...datePicker | ||||
|         } | ||||
|         channel { | ||||
|           data { | ||||
|             attributes { | ||||
|               uid | ||||
|               title | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| } | ||||
| @ -1,58 +0,0 @@ | ||||
| query getWikiPagesPreviews($language_code: String) { | ||||
|   wikiPages(pagination: { limit: -1 }) { | ||||
|     data { | ||||
|       id | ||||
|       attributes { | ||||
|         slug | ||||
|         thumbnail { | ||||
|           data { | ||||
|             attributes { | ||||
|               ...uploadImage | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|         categories(pagination: { limit: -1 }) { | ||||
|           data { | ||||
|             id | ||||
|             attributes { | ||||
|               name | ||||
|               short | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|         tags(pagination: { limit: -1 }) { | ||||
|           data { | ||||
|             id | ||||
|             attributes { | ||||
|               slug | ||||
|               titles(filters: { language: { code: { eq: $language_code } } }) { | ||||
|                 language { | ||||
|                   data { | ||||
|                     attributes { | ||||
|                       code | ||||
|                     } | ||||
|                   } | ||||
|                 } | ||||
|                 title | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|         translations(pagination: { limit: -1 }) { | ||||
|           title | ||||
|           aliases(pagination: { limit: -1 }) { | ||||
|             alias | ||||
|           } | ||||
|           summary | ||||
|           language { | ||||
|             data { | ||||
|               attributes { | ||||
|                 code | ||||
|               } | ||||
|             } | ||||
|           } | ||||
|         } | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| } | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user