-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '7.4.x' into merge-updates-3
* 7.4.x: (29 commits) Thunder 7.4 release Cast to string in strip_tags Load entity types and add cache tags and contexts in search api producer Drupal 10.4 Release 7.3.9 Remove committed core patch #3487031 Issue #3488601: Release Thunder 7.3.8 Add patch from issue #3487031 Make private methods in SearchApiResponse protected. Add node query to GraphQl schema Disable redis extension Release Thunder 7.3.7 Re-add list tags to graphql queries Issue #3478701: Release Thunder 7.3.6 Update diff module (#846) Fix notices in graphql requests Issue #3476367: Release Thunder 7.3.5 Issue #3474835 by anacolautti: Scheduling a published content with content moderation unexpectedly unpublishes the content Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows (#841) Bump vite and vuepress (#842) ...
- Loading branch information
Showing
36 changed files
with
4,534 additions
and
4,129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
query ($uuid: String!) { | ||
node(uuid: $uuid) { | ||
uuid | ||
url | ||
name | ||
entity | ||
language | ||
entityLinks { | ||
canonical | ||
} | ||
... on Article { | ||
published | ||
author { | ||
uuid | ||
name | ||
entity | ||
language | ||
} | ||
channel { | ||
uuid | ||
published | ||
name | ||
url | ||
parent { | ||
name | ||
id | ||
url | ||
} | ||
} | ||
tags { | ||
uuid | ||
name | ||
url | ||
} | ||
seoTitle | ||
content { | ||
__typename | ||
} | ||
teaser { | ||
text | ||
image { | ||
uuid | ||
derivative(style: "medium") { | ||
width | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
"data": { | ||
"node": { | ||
"uuid": "36b2e2b2-3df0-43eb-a282-d792b0999c07", | ||
"url": "/come-drupalcon-new-orleans", | ||
"name": "Come to DrupalCon New Orleans", | ||
"entity": "node", | ||
"language": "en", | ||
"entityLinks": { | ||
"canonical": "/come-drupalcon-new-orleans" | ||
}, | ||
"published": true, | ||
"author": { | ||
"uuid": "be8e7a25-8a41-4bda-a854-b4b9bb1b0a02", | ||
"name": "test-seo", | ||
"mail": null, | ||
"entity": "user", | ||
"language": "en" | ||
}, | ||
"channel": { | ||
"uuid": "0bb70443-8172-4d8e-9335-2876bc32e356", | ||
"published": true, | ||
"name": "Events", | ||
"url": "/events", | ||
"parent": null | ||
}, | ||
"tags": [ | ||
{ | ||
"uuid": "35bdba6e-9b45-472a-8fda-11e7e69de71b", | ||
"name": "Drupal", | ||
"url": "/drupal" | ||
} | ||
], | ||
"seoTitle": "Come to DrupalCon New Orleans", | ||
"content": [ | ||
{ | ||
"__typename": "ParagraphGallery" | ||
}, | ||
{ | ||
"__typename": "ParagraphText" | ||
}, | ||
{ | ||
"__typename": "ParagraphTwitter" | ||
}, | ||
{ | ||
"__typename": "ParagraphLink" | ||
}, | ||
{ | ||
"__typename": "ParagraphQuote" | ||
}, | ||
{ | ||
"__typename": "ParagraphVideo" | ||
}, | ||
{ | ||
"__typename": "ParagraphPinterest" | ||
} | ||
], | ||
"teaser": { | ||
"text": "The Drupal community is one of the largest open source communities in the world. We're developers, designers, strategists, coordinators, editors, translators, and more. Each year, we meet at DrupalCamps, meetups, and other events in more than 200 countries. But once a year, our community comes together at the biggest Drupal event in the world: DrupalCon North America. This year, from May 9-13, we'll be in New Orleans.", | ||
"image": { | ||
"uuid": "a4c1035a-5b27-4713-8ba3-40ba5942486d", | ||
"derivative": { | ||
"width": 220 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"uuid": "36b2e2b2-3df0-43eb-a282-d792b0999c07" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.