Is the facade design pattern considered a "superpattern"? A facade pattern "provides a simplified interface into a larger body of code."
https://en.m.wikipedia.org/wiki/Facade_pattern
The repository pattern is essentially a facade for data access:
https://msdn.microsoft.com/en-us/library/ff649690.aspx
The gateway pattern is a facade for API's:
https://martinfowler.com/eaaCatalog/gateway.html
Are there any other common facade design subpatterns you can think of? Can you think of any other design superpatterns and their subpatterns?