SlideShare a Scribd company logo
1 of 81
Download to read offline
TheHumble&Mighty
SharePointURLQueryString
?author=Patrick%20Doran
Or,
Dadalwayssaid
usetherightWebPart
FortherightJob
Fig1.
Whenyoupickthe
wrongtoolin
SharePoint
yourPresenter: PatrickDoran
● 15 Years as a Front-end Developer & UX Designer
● 6 Years in SharePoint, 2007, 2010 & 2013 & Online
● At work, builds public facing SharePoint sites
yourPresenter: PatrickDoran
Where I’m at:
● Twitter: @SwearPointJS
● LinkedIn: linkedin.com/in/patrickdoran
● And: patrickdoran.com
This presentation:
And: github.com/patd
HowmuchDoyouSharePoint?
★ What a list/library is and what
metadata columns are
★ Web parts: Putting them on a page
★ Calculated column?
★ A little HTML?
WhyareYouhere?
Because not everything is a
React-WebPack-SharePoint-Framework-Hybrid-Azure-Framework.js
Full Trust Solution
Continuous-Integration AWS Powered
solution for THE CLOUD™
WhyareYouhere?
Sometimes all you have is
talent/time for web parts.
This is OK.
Whereweendedup
Whereweendedup
★ All out of the
box web parts
★ Content approval
on list items
WhatIs.aspx?QueryString
★ Hangs on to the end of the URL, after the file name:
★ Usually ?key=value
Morethanonewayto filterwithqueryStrings
★ Question mark is always first one ?=
★ Ampersand are the rest (can be multiple) &=
page.aspx?game=thrones&winter=coming&knowsnothing=jonsnow
WhatIs.aspx?QueryString&k=searchtoo
WhatcanaSharePointQueryStringdoforme?
★ Share a link to a filtered view
★ Bookmark search results
★ Filter 50 web parts on a single page!
WhatcanaSharePointQueryStringdoforme?
★ Show your users just what they want by leveraging
SharePoint metadata and Search.
★ Create a knowledge base with a single list and 1
page (we’ll do this today)
★ Maybe Make a dashboard with just web parts
(if we have time)
https://css-tricks.com/snippets/javascript/get-url-variables/
ButwhataboutJavaScript?
QueryStringURL Worship
★ Web parts can be
loyal to the Query
String
★ When the query string
changes its
teachings, so do its
followers
Fig 1. Web Parts be like
4queryString
Thingswe’llTalk
about
1. Built in
[Search, List/Library]
1. Built in
[Search, List/Library]
2. Query String [URL] Web Part
[For web parts on a page]
4queryString
Thingswe’llTalk
about
1. Built in
[Search, List/Library]
3. Content Query Web Part
[For not-tables of content]
2. Query String [URL] Web Part
[For web parts on a page]
4queryString
Thingswe’llTalk
about
1. Built in
[Search, List/Library]
4. Mixed all together
[Some of each]
2. Query String [URL] Web Part
[For web parts on a page]
3. Content Query Web Part
[For not-tables of content]
4queryString
Thingswe’llTalk
about
Butmaybenot
ContentSearchWebParts
#sorry
FYI:
There’sQueryStringswith
DataViewWebPartsin
SharePointDesigner,too.
1. Hand-Typed
Built-In
Filtering
2kinds
1) Search
2) List/Library View
Builtin:
Search
Change the k= value
http://www.cityoflondon.gov.uk/searc
h/results.aspx?k=Parks
http://www.cityoflondon.gov.uk/searc
h/results.aspx?k=Recreation
k= Search term
results.aspx?k=Parks
k= Multiple Terms
results.aspx?k=Parks%20Recreation
u= Restrict by domain
results.aspx?k=Parks&u=https://cityoflondon.gov.uk
BuiltInSharePointSearchQueryStringsInAction!
Builtin:
List/Library
A regular old list:
https://connect.ncdot.gov/Lists/CDR
Example: Filtered by Division col
https://connect.ncdot.gov/Lists/CDR?
FilterField1=Division&FilterValue1=0
6
What’sthis?FilterField1=Division&FilterValue1=06
2 things to do here:
★ Specify the field to filter on
★ Specify the value to filter on
?FilterField1=Division
&FilterValue1=06
Filter 2 (or more) things
https://connect.ncdot.gov/Lists/CDR?FilterField1=Division&FilterValue1=06&F
ilterField2=County&FilterValue2=Columbus
Filter all (list view) web parts on a page!
https://patrickdoran.sharepoint.com/query-strings/Pages/Query-Strings-One-F
ilter-Many-Web-Parts.aspx?FilterField1=Name1&FilterValue1=Boston%20Red%20So
x
Sort on a field!
https://patrickdoran.sharepoint.com/query-strings/Lists/Baseball/Baseball.a
spx?SortField=yearID&SortDir=Asc
Demo 0
BuiltInSharePointQueryStringsInAction!
BuiltIn:Pros
★ Fast to set up.
★ Bookmarkable.
★ No web parts needed
★ Works w/anonymous permissions
★ List/Library: Up to 10!
BuiltIn:Cons
★ Must know internal field name of column (Though
this is good, too)
★ URL is weird to read
★ Only one sort field
★ Not permanent, unless you bookmark it or add it
as a link
InternalFieldNames
★ First name the field has when you create a column.
★ SharePoint controls this. Tricky to change after it’s made.
★ Hover over the column name in list settings to find it
2. QueryString
(URL)
WebPart
UsethisWebPart:QueryString(URL)Filter
Enableitifit’snotthere
If you don’t see the web parts, activate
Standard Site Collection Features
What’sitlooklike?
What’sitlooklike?
More control
★ Pick Your query
string key, like
?Year=
?Cheese=
Demo1
Makingtheconnection
01. Add Query String (URL)
Filter web part.
02. Click ‘Open the tool
pane’ to configure
Makingtheconnection
Configure
Filter Name = Just to help
you remember.
Query String Parameter
Name = What’s in the URL,
like: page.aspx?year=2013
Makingtheconnection
03. In List View Web Part,
edit, pick Connections
and then Get Filter
Values From and finally
Query String (URL)
Filter
You’re telling this web
part to obey the Query
string web part
Makingtheconnection
Specify Column
What list column should
your Query String URL
filter on? In this
case, Year.
Pro Tip: Your browser’s
popup blocker will
block this popup
window.
Makingtheconnection
04. Confirm and Test.
Query String URL Filter
web part will list any
other web parts it’s
connected to.
Now try your ?year= query
string!
Demo1Review
01. SharePoint List* with useful column (Year)
02. Added List View Web Part
03. Added Query String [URL] Filter Web Part
04. Connected them!
05. Changed URL = updated list view on this page
* Libraries work too!
Demo2:MultipleValues
Demo2:MultipleValues Review
01. List View Web Part
02. Added Query String Web Part, connected to Year Column
03. Added 2nd Query String Web Part, connected to Team
Name Column
04. Changed URL query string values for both Year and Team
Name = updated list view on this page
Demo3:Onefilter, ManyWebParts
The beginning of a Dashboard….
Demo3:Onefilter, ManyWebParts:Review
01. Added 5 List View Web Parts - (all from the same list,
but can be many)
02. Single Query String (URL) Filter Web Part Connected to
all the web parts on the page
03. Changed URL Query string = all web parts respond
QueryString(URL)WebPart: Pros
★ Name your own query key. ?this=awesome
★ Use Multiple filters to filter multiple web
parts.
★ Sorting configured in views
★ Can be mixed w/Content Query Web Parts
QueryString(URL)WebPart: Cons
★ One+ extra web part on a page per query
string.
★ Soooo much configuring
★ Can’t use SharePoint ID column to filter
★ List view Web Parts look like list view
web parts
3. ContentQuery
WebPart’sQuery
StringFilter
cQwP:WhyNotUseListViewWebParts?
★ List View Web Parts look like List View Web Parts.
★ Weigh a lot of KB
★ Depending on your site’s styling, Content Query Web Part
might look better.
* Content Search web parts work this way too, but harder to configure.
ContentQueryConfigure
In CQWP, under Additional
Filters, use this:
[PageQueryString:x]
(Where x is your query string
key, like Year)
Demo4:ContentQueryWebParts
Demo4:ContentQueryWebPartsReview
01. Added a Content Query Web Part to page and
configured it to reference our list
02. No extra web parts. Query string
functionality configured in CQWP itself.
03. URL query string works the same as our other
examples.
ContentQueryWebPartQueryString: Pros
★ Name your own query key. ?this=awesome
★ Combine Multiple filters to multiple web parts.
★ Can be mixed with List View query-string
filtered web parts, and share query strings
★ No extra web parts needed!
ContentQueryWebPartQueryString: Cons
★ Syntax is a little weird
★ CQWPs have only a few formatting options
w/out CSS+XSLT
★ Can’t re-sort without editing web part
4.Alltogethernow
AllTogetherNow
★ Add List View Web Parts
★ Add Query String (URL) Filter Web Parts
★ Add Content Query Web Parts
★ Use the same ?key=value URL
filtering!
Demo5:QueryString AllThethings
Demo5:QueryString AllThethingsReview
01. 1 List and 1 library, same Metadata columns
(Year and Team Name)
02. Add 2 CQWPs and 2 LVWPs
03. Add Query String Web Part each for Year and
Team Name.
04. Configure!
Spruceitupabit
Spruceitupabit+navigation
SameList
+GroupByWebPart
+[calculatedColumn]
=AutomaticNavigation
Figureoutthingsfirst
1. What’s your Query String URL setup?
(Map out columns for ?key=value, or ?key=value&key2=valueX)
2. What Column is the link name text in?
(Does the link say ‘Arizona Diamondbacks’ or ‘1999’ ?)
Makeyourcalculatedcolumn
★ Concatenate!
★ Data type must be number to
render as HTML link
★ Can use most columns, but
not ID
★ Be patient when clicking
[Ok]
Makeyourcalculatedcolumn
Example Syntax:
=CONCATENATE("<a
href='pageName.aspx?TeamName=",[Team
Name],"&Year=",Year,"'>",[Team Name],"</a>")
Makeyourcalculatedcolumn
★ Save your new calculated column
★ Add the column to the view
★ Self-updating clickable link!
Sitback,letContributorsdotheirthing
Sitback,letContributorsdotheirthing
Sitback,letContributorsdotheirthing
recap
Query String-based
techinques we covered
1. Built in
[Search, List/Library]
4. Mixed all together
[Some of each]
2. Query String [URL] Web Part
[For web parts on a page]
3. Content Query Web Part
[For not-tables of content]
BONUS:
JavascriptQuery
StringURL!
Web parts for some stuff,
JavaScript to add some
styling/context
youknowJSandyoulikeChromeDevTools?
What are my Query Strings?
console.log(window.location.search)
AssumesyouJSandyoulikeChromeDevTools
What are the values of my Query Strings?
function getQueryVariable(variable) {
var query = window.location.search.substring(1);
var vars = query.split("&amp;");
for (var i=0;i&lt;vars.length;i++) {
var pair = vars[i].split("=");
if (pair[0] == variable) {
return pair[1];
}
}
alert('Query Variable ' + variable + ' not found');
}
https://patrickdoran.sharepoint.com/query-strings/Pages/Query-String-Demo-Java
script.aspx
https://patrickdoran.sharepoint.com/query-strings/Pages/Query-String-Demo-Java
script.aspx?FilterField1=Name1&FilterValue1=Boston%20Red%20Sox
// Function at gets the value of a query string key-value pair.
// expects the key to be passed to it.
var getQueryVariable = function(variable) {
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
if(pair[0] == variable){return pair[1];}
}
return(false);

More Related Content

What's hot

Search Topology and Optimization
Search Topology and OptimizationSearch Topology and Optimization
Search Topology and OptimizationMike Maadarani
 
Developing Search-driven application in SharePoint 2013
 Developing Search-driven application in SharePoint 2013  Developing Search-driven application in SharePoint 2013
Developing Search-driven application in SharePoint 2013 SPC Adriatics
 
Developing Branding Solutions for 2013
Developing Branding Solutions for 2013Developing Branding Solutions for 2013
Developing Branding Solutions for 2013Thomas Daly
 
Django 1.10.3 Getting started
Django 1.10.3 Getting startedDjango 1.10.3 Getting started
Django 1.10.3 Getting startedMoniaJ
 
Power Automate Techniques that "Saved Our Bacon"
Power Automate Techniques that "Saved Our Bacon"Power Automate Techniques that "Saved Our Bacon"
Power Automate Techniques that "Saved Our Bacon"Thomas Duff
 
Developing Branding Solutions for 2013
Developing Branding Solutions for 2013Developing Branding Solutions for 2013
Developing Branding Solutions for 2013Thomas Daly
 
Power Automate Techniques that "Save
Power Automate Techniques that "SavePower Automate Techniques that "Save
Power Automate Techniques that "SaveThomas Duff
 
appengine ja night #25 Google App Engine for PHP (English)
appengine ja night #25 Google App Engine for PHP (English)appengine ja night #25 Google App Engine for PHP (English)
appengine ja night #25 Google App Engine for PHP (English)Ryo Yamasaki
 

What's hot (9)

Search Topology and Optimization
Search Topology and OptimizationSearch Topology and Optimization
Search Topology and Optimization
 
Wordpress & HTML5 by Rob Larsen
Wordpress & HTML5 by Rob LarsenWordpress & HTML5 by Rob Larsen
Wordpress & HTML5 by Rob Larsen
 
Developing Search-driven application in SharePoint 2013
 Developing Search-driven application in SharePoint 2013  Developing Search-driven application in SharePoint 2013
Developing Search-driven application in SharePoint 2013
 
Developing Branding Solutions for 2013
Developing Branding Solutions for 2013Developing Branding Solutions for 2013
Developing Branding Solutions for 2013
 
Django 1.10.3 Getting started
Django 1.10.3 Getting startedDjango 1.10.3 Getting started
Django 1.10.3 Getting started
 
Power Automate Techniques that "Saved Our Bacon"
Power Automate Techniques that "Saved Our Bacon"Power Automate Techniques that "Saved Our Bacon"
Power Automate Techniques that "Saved Our Bacon"
 
Developing Branding Solutions for 2013
Developing Branding Solutions for 2013Developing Branding Solutions for 2013
Developing Branding Solutions for 2013
 
Power Automate Techniques that "Save
Power Automate Techniques that "SavePower Automate Techniques that "Save
Power Automate Techniques that "Save
 
appengine ja night #25 Google App Engine for PHP (English)
appengine ja night #25 Google App Engine for PHP (English)appengine ja night #25 Google App Engine for PHP (English)
appengine ja night #25 Google App Engine for PHP (English)
 

Similar to The Humble & Mighty SharePoint URL Query String

Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017
Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017
Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017Drew Madelung
 
SUGUK Cambridge - Display Templates & JSLink for IT Pros
SUGUK Cambridge - Display Templates & JSLink for IT ProsSUGUK Cambridge - Display Templates & JSLink for IT Pros
SUGUK Cambridge - Display Templates & JSLink for IT ProsPaul Hunt
 
SPSSTHLM - Using JSLink and Display Templates for ITPros
SPSSTHLM - Using JSLink and Display Templates for ITProsSPSSTHLM - Using JSLink and Display Templates for ITPros
SPSSTHLM - Using JSLink and Display Templates for ITProsPaul Hunt
 
Spsbe using js-linkanddisplaytemplates
Spsbe   using js-linkanddisplaytemplatesSpsbe   using js-linkanddisplaytemplates
Spsbe using js-linkanddisplaytemplatesPaul Hunt
 
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...BIWUG
 
#SPSLondon - Session 2 JSLink for IT Pros
#SPSLondon - Session 2 JSLink for IT Pros#SPSLondon - Session 2 JSLink for IT Pros
#SPSLondon - Session 2 JSLink for IT ProsPaul Hunt
 
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016Drew Madelung
 
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box TechnologyBringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technologyjoelsef
 
Product Catalog and IT Service Management
Product Catalog and IT Service ManagementProduct Catalog and IT Service Management
Product Catalog and IT Service ManagementDrew Madelung
 
Using js link and display templates
Using js link and display templatesUsing js link and display templates
Using js link and display templatesPaul Hunt
 
Content by query web part
Content by query web partContent by query web part
Content by query web partIslamKhattab
 
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection BoundarySPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection BoundaryJonathan Ralton
 
JSLink for ITPros - SharePoint Saturday Jersey
JSLink for ITPros - SharePoint Saturday JerseyJSLink for ITPros - SharePoint Saturday Jersey
JSLink for ITPros - SharePoint Saturday JerseyPaul Hunt
 
SharePoint 2010 Application Development Overview
SharePoint 2010 Application Development OverviewSharePoint 2010 Application Development Overview
SharePoint 2010 Application Development OverviewRob Windsor
 
Usability AJAX and other ASP.NET Features
Usability AJAX and other ASP.NET FeaturesUsability AJAX and other ASP.NET Features
Usability AJAX and other ASP.NET FeaturesPeter Gfader
 
Django Introduction & Tutorial
Django Introduction & TutorialDjango Introduction & Tutorial
Django Introduction & Tutorial之宇 趙
 
SharePoint Designer Workflows - Nuts, Bolts and Examples
SharePoint Designer Workflows - Nuts, Bolts and ExamplesSharePoint Designer Workflows - Nuts, Bolts and Examples
SharePoint Designer Workflows - Nuts, Bolts and ExamplesDrew Madelung
 
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection BoundarySPSNE17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection BoundaryJonathan Ralton
 
SharePoint Branding From Start to Finish
SharePoint Branding From Start to FinishSharePoint Branding From Start to Finish
SharePoint Branding From Start to FinishKanwal Khipple
 
Best Practices to SharePoint Architecture Fundamentals NZ & AUS
Best Practices to SharePoint Architecture Fundamentals NZ & AUSBest Practices to SharePoint Architecture Fundamentals NZ & AUS
Best Practices to SharePoint Architecture Fundamentals NZ & AUSguest7c2e070
 

Similar to The Humble & Mighty SharePoint URL Query String (20)

Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017
Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017
Essentials for the SharePoint Power User - SharePoint Engage Raleigh 2017
 
SUGUK Cambridge - Display Templates & JSLink for IT Pros
SUGUK Cambridge - Display Templates & JSLink for IT ProsSUGUK Cambridge - Display Templates & JSLink for IT Pros
SUGUK Cambridge - Display Templates & JSLink for IT Pros
 
SPSSTHLM - Using JSLink and Display Templates for ITPros
SPSSTHLM - Using JSLink and Display Templates for ITProsSPSSTHLM - Using JSLink and Display Templates for ITPros
SPSSTHLM - Using JSLink and Display Templates for ITPros
 
Spsbe using js-linkanddisplaytemplates
Spsbe   using js-linkanddisplaytemplatesSpsbe   using js-linkanddisplaytemplates
Spsbe using js-linkanddisplaytemplates
 
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...
SharePoint Saturday Belgium 2014 - Using JSLink and Display Templates with th...
 
#SPSLondon - Session 2 JSLink for IT Pros
#SPSLondon - Session 2 JSLink for IT Pros#SPSLondon - Session 2 JSLink for IT Pros
#SPSLondon - Session 2 JSLink for IT Pros
 
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
Essentials for the SharePoint Power User - SPTechCon San Francisco 2016
 
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box TechnologyBringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
 
Product Catalog and IT Service Management
Product Catalog and IT Service ManagementProduct Catalog and IT Service Management
Product Catalog and IT Service Management
 
Using js link and display templates
Using js link and display templatesUsing js link and display templates
Using js link and display templates
 
Content by query web part
Content by query web partContent by query web part
Content by query web part
 
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection BoundarySPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNYC17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
 
JSLink for ITPros - SharePoint Saturday Jersey
JSLink for ITPros - SharePoint Saturday JerseyJSLink for ITPros - SharePoint Saturday Jersey
JSLink for ITPros - SharePoint Saturday Jersey
 
SharePoint 2010 Application Development Overview
SharePoint 2010 Application Development OverviewSharePoint 2010 Application Development Overview
SharePoint 2010 Application Development Overview
 
Usability AJAX and other ASP.NET Features
Usability AJAX and other ASP.NET FeaturesUsability AJAX and other ASP.NET Features
Usability AJAX and other ASP.NET Features
 
Django Introduction & Tutorial
Django Introduction & TutorialDjango Introduction & Tutorial
Django Introduction & Tutorial
 
SharePoint Designer Workflows - Nuts, Bolts and Examples
SharePoint Designer Workflows - Nuts, Bolts and ExamplesSharePoint Designer Workflows - Nuts, Bolts and Examples
SharePoint Designer Workflows - Nuts, Bolts and Examples
 
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection BoundarySPSNE17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
SPSNE17 - The Wall: Overcoming SharePoint’s Site Collection Boundary
 
SharePoint Branding From Start to Finish
SharePoint Branding From Start to FinishSharePoint Branding From Start to Finish
SharePoint Branding From Start to Finish
 
Best Practices to SharePoint Architecture Fundamentals NZ & AUS
Best Practices to SharePoint Architecture Fundamentals NZ & AUSBest Practices to SharePoint Architecture Fundamentals NZ & AUS
Best Practices to SharePoint Architecture Fundamentals NZ & AUS
 

Recently uploaded

Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 

Recently uploaded (20)

Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 

The Humble & Mighty SharePoint URL Query String